tor-browser

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

min-size-auto-overflow-clip.html (568B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      4 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#min-size-auto">
      5 <link rel="match" href="min-size-auto-overflow-clip-ref.html">
      6 <title>overflow: visible and clip behave the same for min-size purposes</title>
      7 <style>
      8  .flex {
      9    display: flex;
     10    width: 100px;
     11    border: 1px solid;
     12  }
     13 </style>
     14 <div class="flex">
     15  <div style="overflow: clip">
     16    <div style="background: green; width: 150px; height: 50px;"></div>
     17  </div>
     18 </div>