tor-browser

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

position-fixed-001-ref.html (275B)


      1 <!DOCTYPE html>
      2 <html>
      3 
      4 <style>
      5 .fixed-pos{
      6  position: fixed;
      7  background: green;
      8 }
      9 </style>
     10 
     11 <body>
     12 
     13 <p>You should see no red.</p>
     14 
     15 <div class="fixed-pos" >
     16  <div>
     17    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
     18  </div>
     19  <div>
     20    YYYY
     21  </div>
     22 </div>
     23 
     24 </body>
     25 </html>