tor-browser

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

scrollbar-gutter-fixedpos-002-ref.html (529B)


      1 <!DOCTYPE html>
      2 <title>CSS Overflow Reference: Root element's scrollbar-gutter is accounted for in fixed-pos positioning</title>
      3 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      4 <link rel="author" title="Mozilla" href="https://www.mozilla.org/">
      5 <style>
      6 :root {
      7  scrollbar-gutter: stable both-edges;
      8 }
      9 body {
     10  margin: 0;
     11 }
     12 .fixed {
     13  width: 100px;
     14  height: 100px;
     15  background: green;
     16  position: absolute;
     17 }
     18 </style>
     19 
     20 <div class="fixed" style="left: 0"></div>
     21 <div class="fixed" style="right: 0"></div>