tor-browser

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

position-fixed-inside-sticky-3-ref.html (230B)


      1 <!DOCTYPE html>
      2 <html>
      3 <style>
      4 body {
      5  height: 4000px;
      6  margin: 0;
      7  overflow: hidden;
      8 }
      9 #sticky {
     10  position: sticky;
     11  top: 0;
     12  height: 60px;
     13  background-color: blue;
     14 }
     15 </style>
     16 <body>
     17 <div id="sticky"></div>
     18 </body></html>