tor-browser

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

overflow-scroll-big-border-small-content.html (706B)


      1 <!DOCTYPE html>
      2 <title>CSS Overflow: overflow: scroll with big border and a small overflowing content</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-overflow-3#propdef-overflow">
      4 <link rel="match" href="overflow-scroll-big-border-small-content-ref.html">
      5 <div id="scroller" style="overflow: scroll; width: 100px; height: 100px;
      6                          border: 100px solid white; background: red">
      7  <div style="height: 50px; background: green"></div>
      8  <div style="height: 50px; background: green"></div>
      9  <div style="height: 50px; background: green"></div>
     10  <div style="height: 50px; background: green"></div>
     11 </div>
     12 <script>
     13 onload = () => {
     14  scroller.scrollTo(0, 100);
     15 };
     16 </script>