tor-browser

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

viewport-units-scrollbars-custom-001-ref.html (410B)


      1 <!doctype html>
      2 <html style="overflow-x: auto; overflow-y: scroll;">
      3 <style>
      4  html::-webkit-scrollbar {
      5    width: 300px;
      6  }
      7 
      8  html::-webkit-scrollbar-thumb {
      9    background-color: black;
     10  }
     11 
     12  html::-webkit-scrollbar-track:vertical {
     13    background-color: hotpink;
     14  }
     15 </style>
     16 
     17 <body style="margin: 0; padding: 0;">
     18  <div style="width: 800px; height: 100px; background: orange;"></div>
     19 </body>
     20 
     21 </html>