tor-browser

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

flex-container-fragmentation-001.html (699B)


      1 <!DOCTYPE html>
      2 <title>
      3  Flex container fragmentation (with no items).
      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  }
     15  .flex {
     16    background: green;
     17    border: 3px solid green;
     18    display: flex;
     19    padding: 5px;
     20    width: 9px;
     21  }
     22 </style>
     23 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     24 <div class="multicol">
     25  <div class="flex" style="height: 134px;"></div>
     26  <div class="flex" style="height: 234px;"></div>
     27 </div>