tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

legend-block-margins-ref.html (430B)


      1 <!doctype html>
      2 <title>Reference for legend block margins</title>
      3 <style>
      4 body { margin: 0; }
      5 .fieldset { margin: 2em 1em 1em 1em; border: 1em solid green; }
      6 .legend { position: absolute; margin-top: -1em; margin-left: 1em; background: white; height: 1em; }
      7 .inner { margin: 3em 1em 1em 1em; height: 1em; }
      8 </style>
      9 <p>There should be no red.</p>
     10 <div class=fieldset>
     11  <div class=legend>X</div>
     12  <div class=inner>Y</div>
     13 </div>