tor-browser

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

flex-container-fragmentation-009.html (744B)


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