tor-browser

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

single-line-column-flex-fragmentation-058.html (763B)


      1 <!DOCTYPE html>
      2 <title>
      3  Tests that the margin-bottom of the last flex item is taken into account
      4  when fragmenting.
      5 </title>
      6 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      7 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      8 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      9 <div style="column-count: 2; height: 100px; width: 100px; column-gap: 0; column-fill: auto; background: red;">
     10  <div style="display: flex; flex-direction: column; background: green;">
     11    <div style="height: 50px; width: 50px; margin-bottom: 20px;">
     12      <div style="height: 200px; width: 50px;"></div>
     13    </div>
     14  </div>
     15  <div style="height: 130px; width: 50px; background: green;"></div>
     16 </div>