tor-browser

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

multi-line-row-flex-fragmentation-005.html (807B)


      1 <!DOCTYPE html>
      2 <title>
      3  Multi-line row flex fragmentation with nested OOF.
      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    position: relative;
     20    height: 400px;
     21    width: 25px;
     22  }
     23  .abs {
     24    background: green;
     25    position: absolute;
     26    width: 25px;
     27    top: 0;
     28    bottom: 0;
     29  }
     30 </style>
     31 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     32 <div class="multicol">
     33  <div class="flex">
     34    <div>
     35      <div class="abs"></div>
     36    </div>
     37  </div>
     38 </div>