tor-browser

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

position-fixed-inside-sticky-2-ref.html (273B)


      1 <!DOCTYPE html>
      2 <html>
      3 <style>
      4 body {
      5  height: 4000px;
      6  margin: 0;
      7  overflow: hidden;
      8 }
      9 #fixed {
     10  position: fixed;
     11  top: 50px;
     12  left: 50px;
     13  width: 100px;
     14  height: 100px;
     15  box-sizing: border-box;
     16  border: 1px solid blue;
     17 }
     18 </style>
     19 <div id="fixed"></div>
     20 </html>