tor-browser

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

multi-line-row-flex-fragmentation-006.html (734B)


      1 <!DOCTYPE html>
      2 <title>
      3  Simple multi-line row flex fragmentation with items that stretch.
      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  .multicol {
      9    background: red;
     10    column-count: 4;
     11    column-fill:auto;
     12    column-gap: 0px;
     13    height: 100px;
     14    width: 100px;
     15  }
     16  .flex {
     17    display: flex;
     18    flex-wrap: wrap;
     19    height: 400px;
     20    width: 25px;
     21  }
     22  .flex > div {
     23    background: green;
     24    width: 25px;
     25  }
     26 </style>
     27 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     28 <div class="multicol">
     29  <div class="flex">
     30    <div></div>
     31    <div></div>
     32  </div>
     33 </div>