tor-browser

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

overflow-scroll-resize-visibility-hidden-ref.html (415B)


      1 <!DOCTYPE html>
      2 <style>
      3 .scroller {
      4  width: 100px;
      5  height: 100px;
      6  overflow: scroll;
      7  /* to make the scroller a white mask over the content */
      8  filter: brightness(0) invert(1);
      9  position: relative;
     10  top: -200px;
     11 }
     12 .content {
     13  width: 100px;
     14  height: 100px;
     15  background: green;
     16 }
     17 </style>
     18 <div class="content"></div>
     19 <div class="content"></div>
     20 <div class="scroller"></div>
     21 <div class="scroller"></div>