tor-browser

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

position-fixed-transformed-1-ref.html (290B)


      1 <html>
      2 <head>
      3 <style>
      4 .fixedpos {
      5 transform: translateX(0px);
      6 position: fixed;
      7 top: 0;
      8 width: 100%;
      9 height: 100px;
     10 background: red;
     11 }
     12 .filler {
     13 height: 4000px;
     14 }
     15 </style>
     16 </head>
     17 <body onload="scrollTo(0,200)">
     18 <div class="fixedpos"></div>
     19 <div class="filler"></div>
     20 </body>
     21 </html>