tor-browser

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

root-scroll-button.html (512B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Overflow: ::scroll-button on root element</title>
      4 <link rel="match" href="root-scroll-button-ref.html">
      5 <link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-buttons">
      6 <style>
      7  body {
      8    margin: 0;
      9  }
     10 
     11  :root::scroll-button(block-end) {
     12    content: "down";
     13    position: absolute;
     14    top: 0;
     15  }
     16 
     17  div {
     18    width: 600px;
     19    height: 300px;
     20    margin-bottom: 20px;
     21    background: green;
     22  }
     23 </style>
     24 <div></div>
     25 <div></div>
     26 <div></div>