tor-browser

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

scrollbar-gutter-with-background-gradient-ref.html (445B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Overflow: test scrollbar-gutter with background gradient</title>
      4 <link rel="author" title="CGQAQ" href="mailto:m.jason.liu@gmail.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-overflow-4/#scrollbar-gutter-property">
      6 <style>
      7  html {
      8    scrollbar-gutter: stable both-edges;
      9    background-image: linear-gradient(to right, green, blue);
     10    position: fixed;
     11    inset: 0;
     12  }
     13 </style>