tor-browser

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

scrollbar-container-units-block-ref.html (434B)


      1 <!DOCTYPE html>
      2 <style>
      3 .container {
      4  display: inline-block;
      5  border: solid 3px cornflowerblue;
      6  width: 100px;
      7  height: 100px;
      8  container-type: size;
      9 }
     10 div > div {
     11  box-sizing: border-box;
     12  width: 200px;
     13  height: 100%;
     14  border: solid 10px orange;
     15 }
     16 </style>
     17 <div class="container" style="overflow-x: scroll;">
     18  <div></div>
     19 </div>
     20 <div class="container" style="overflow-x: auto;">
     21  <div style="height: 100px;"></div>
     22 </div>