tor-browser

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

fieldset-columns-003-ref.html (336B)


      1 <!DOCTYPE html>
      2 <html>
      3  <style>
      4  fieldset.outer {
      5    transform: rotate(180deg);
      6    width: 100px;
      7    height: 50px;
      8    border: 1px solid blue;
      9  }
     10 
     11  div.fixed {
     12    position: fixed;
     13    background: green;
     14  }
     15  </style>
     16 
     17  <fieldset class="outer">
     18    <legend>Legend</legend>
     19    <div class="fixed">ABC</div>
     20  </fieldset>
     21 </html>