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 (610B)


      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-grid/#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    flex-direction: column;
     11  }
     12  .grid {
     13    display: grid;
     14    flex-basis: 20px;
     15    border: 1px solid;
     16  }
     17 </style>
     18 <div class="flex">
     19  <div class="grid" style="overflow: clip">
     20    <div style="height: 50px;"></div>
     21  </div>
     22 </div>