tor-browser

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

item-with-max-height-and-scrollbar.html (583B)


      1 <!DOCTYPE html>
      2 <title>css-flexbox: Tests that we correctly size a flex item with a scrollbar and max-height</title>
      3 <link rel="author" title="Google LLC" href="https://www.google.com/">
      4 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#resolve-flexible-lengths">
      5 <link rel="match" href="reference/item-with-max-height-and-scrollbar-ref.html">
      6 
      7 <div style="display: flex; width: 100px; flex-direction: column;">
      8  <div style="overflow: scroll; max-height: 100%; min-height: 0; background: green;">
      9    <div style="height: 100px; width: 100px;">
     10    </div>
     11  </div>
     12 </div>