tor-browser

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

scrollbar-gutter-abspos-001-ref.html (364B)


      1 <!doctype html>
      2 <title>CSS Overflow Reference: scrollbar-gutter is accounted for in abspos sizing</title>
      3 <style>
      4 .container {
      5  scrollbar-gutter: stable;
      6  overflow-y: auto;
      7  width: 100px;
      8  height: 200px;
      9  position: relative;
     10 }
     11 .child {
     12  width: 100%;
     13  height: 100px;
     14  background: green;
     15 }
     16 </style>
     17 <div class="container">
     18  <div class="child"></div>
     19 </div>