tor-browser

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

viewport-scrollbar-ref.html (622B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <title>CSS Reference: styled scrollbars</title>
      4 <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
      5 <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      6 <link rel="help" href="https://drafts.csswg.org/css-scrollbars-1/#scrollbar-color-properties">
      7 <style>
      8 #outer {
      9  border: 1px solid black;
     10  width: 200px; height: 200px;
     11  overflow: scroll;
     12  scrollbar-color: yellow blue;
     13 }
     14 #inner {
     15  width: 400px; height: 400px;
     16 }
     17 </style>
     18 <p>Test passes if the scrollbars in the following box are styled:</p>
     19 <div id="outer">
     20  <div id="inner">
     21  </div>
     22 </div>