tor-browser

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

multi-line-column-flex-fragmentation-044.html (1191B)


      1 <!DOCTYPE html>
      2 <title>
      3  Multi-line column flex fragmentation: wrap-reverse and column-reverse with break-rules.
      4 </title>
      5 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      6 <link rel="match" href="multi-line-column-flex-fragmentation-044-ref.html">
      7 <div style="width: 100px; height: 100px; columns: 2; column-fill: auto; column-gap: 0;">
      8  <div style="height: 50px; width: 50px; background: green;"></div>
      9  <div style="display: flex; flex-direction: column-reverse; flex-wrap: wrap-reverse; height: 200px;">
     10    <div style="height: 50px; width: 25px; background: orange;"></div>
     11    <div style="height: 50px; width: 25px; background: blue; break-before: avoid;"></div>
     12    <div style="height: 50px; width: 25px; background: purple;"></div>
     13    <div style="height: 50px; width: 25px; background: yellow;"></div>
     14 
     15    <div style="height: 50px; width: 25px; background: pink;"></div>
     16    <div style="height: 50px; width: 25px; background: maroon; break-before: avoid;"></div>
     17    <div style="height: 50px; width: 25px; background: magenta;"></div>
     18    <div style="height: 50px; width: 25px; background: mediumaquamarine; break-before: column;"></div>
     19  </div>
     20 </div>