tor-browser

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

checkerboard-on-subscroller-ref.html (386B)


      1 <!DOCTYPE html>
      2 <html>
      3 <style>
      4 #outer {
      5  position: absolute;
      6  overflow: scroll;
      7  width: 90vw;
      8  height: 90vh;
      9  border: 1px solid black;
     10  scrollbar-width: none;
     11 }
     12 #inner {
     13  overflow-y: hidden;
     14  width: 100%;
     15 }
     16 .spacer {
     17  width: 60vw;
     18  height: 5000px;
     19  background-color: blue;
     20 }
     21 </style>
     22 <div id="outer">
     23  <div id="inner">
     24    <div class="spacer"></div>
     25  </div>
     26 </div>
     27 </html>