tor-browser

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

scrollbar-thin-overflow-change-ref.html (245B)


      1 <!DOCTYPE html>
      2 <style>
      3 #outer {
      4  scrollbar-width: thin;
      5  overflow: auto;
      6  border: 5px solid black;
      7  background: black;
      8  width: 200px;
      9  height: 200px;
     10 }
     11 #inner {
     12  height: 300px;
     13 }
     14 </style>
     15 <div id="outer">
     16  <div id="inner"></div>
     17 </div>