tor-browser

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

fieldset-columns-004.html (513B)


      1 <!DOCTYPE html>
      2 <html>
      3  <style>
      4  fieldset.outer {
      5    column-count: 1;
      6    transform: translateX(3px);
      7    position: relative;
      8    width: 100px;
      9    height: 50px;
     10    border: 1px solid blue;
     11    margin: 0;
     12  }
     13 
     14  div.fixed {
     15    position: fixed;
     16    top: 0;
     17    left: 0;
     18    background: green;
     19  }
     20  </style>
     21 
     22  <!-- ABC should be inside the fieldset since 'transform' creates a stacking context. -->
     23  <fieldset class="outer">
     24    <legend>Legend</legend>
     25    <div class="fixed">ABC</div>
     26  </fieldset>
     27 </html>