tor-browser

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

no-overscroll-ref.html (322B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <style>
      5    html {
      6      scrollbar-width: none;
      7    }
      8    body {
      9      height: 3000px;
     10      margin: 0;
     11    }
     12    div {
     13      position: absolute;
     14      top: 0px;
     15      width: 200px;
     16      height: 200px;
     17      background: green;
     18    }
     19  </style>
     20 </head>
     21 <body>
     22  <div></div>
     23 </body>
     24 </html>