tor-browser

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

flex-container-fragmentation-010.html (904B)


      1 <!DOCTYPE html>
      2 <title>
      3  OOF static pos in fragmented flex container with multicol CB, with align end.
      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-gap: 0px;
     12    height: 100px;
     13    width: 100px;
     14    position: relative;
     15  }
     16  .flex {
     17    display: flex;
     18    flex-direction: column;
     19    justify-content: flex-end;
     20    height: 400px;
     21    width: 50px;
     22  }
     23  .flex > div {
     24    background: green;
     25    height: 100px;
     26    width: 25px;
     27  }
     28 </style>
     29 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     30 <div class="multicol">
     31  <div class="flex">
     32    <div style="position:absolute;"></div>
     33    <div></div>
     34    <div></div>
     35    <div></div>
     36    <div style="background:red;"></div>
     37  </div>
     38 </div>