tor-browser

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

multi-line-row-flex-fragmentation-068.html (890B)


      1 <!DOCTYPE html>
      2 <title>
      3  Multi-line row flex fragmentation: row gaps should be truncated by
      4  fragmentainer breaks. Test with content overflow.
      5 </title>
      6 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      7 <link rel="match" href="multi-line-row-flex-fragmentation-068-ref.html">
      8 <style>
      9  .multicol {
     10    columns: 2;
     11    column-fill: auto;
     12    width: 300px;
     13    height: 100px;
     14    margin: 20px;
     15    background: yellow;
     16  }
     17  .flex {
     18    display: flex;
     19    flex-wrap: wrap;
     20    background: gray;
     21  }
     22  .flex > div {
     23    contain: size;
     24    width: 100%;
     25    height: 50px;
     26    background: cyan;
     27  }
     28 </style>
     29 <p>Flex row gaps <strong>should</strong> be truncated when a row breaks.</p>
     30 <div class="multicol">
     31  <div style="height:25px;"></div>
     32  <div class="flex" style="row-gap:100px; height:25px;">
     33    <div style="height:150px;"></div>
     34    <div></div>
     35  </div>
     36 </div>