tor-browser

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

fieldset-00M-ref.html (703B)


      1 <!DOCTYPE html>
      2 <html class="reftest-paged">
      3  <title>CSS Reference: fieldset fragmentation</title>
      4  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      5  <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1735375">
      6  <meta name="flags" content="paged">
      7  <style>
      8  @page { size:5in 3in; margin:0.5in; }
      9  html,body {
     10    color:black; background-color:white; font:0.5in/1 monospace; padding:0; margin:0;
     11  }
     12  .flexbox {
     13    display: flex;
     14  }
     15  .fieldset {
     16    padding: 0;
     17    margin: 0;
     18    border: 1em solid black;
     19  }
     20  </style>
     21 
     22  <div class="flexbox">
     23    <div>
     24      <div>BEFORE</div>
     25      <div class="fieldset">A<br>B<br>C</div>
     26    </div>
     27  </div>
     28 </html>