tor-browser

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

multi-line-row-flex-fragmentation-060.html (955B)


      1 <!DOCTYPE html>
      2 <title>
      3  Multi-line row flex fragmentation: row-gap and item expansion.
      4 </title>
      5 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      6 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      7 <style>
      8  #flex {
      9    display: flex;
     10    flex-wrap: wrap;
     11    row-gap: 10px;
     12  }
     13  #flex > div {
     14    width: 100%;
     15    background: green;
     16  }
     17 </style>
     18 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     19 <div style="columns: 2; column-fill: auto; column-gap: 0; width: 100px; height: 100px; background: red;">
     20  <div style="height: 50px; background: green;"></div>
     21    <div id="flex">
     22      <div>
     23        <div style="height: 25px;"></div>
     24        <div style="height: 25px; break-before: column;"></div>
     25        <div style="position: absolute; width: 50px; height: 10px; background: green;"></div>
     26      </div>
     27      <div style="height: 65px;"></div>
     28    </div>
     29  </div>
     30 </div>