multi-line-row-flex-fragmentation-050.html (1003B)
1 <!DOCTYPE html> 2 <title> 3 Multi-line row flex fragmentation: wrap-reverse and row-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-row-flex-fragmentation-050-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-flow: row-reverse; flex-wrap: wrap-reverse; height: 200px;"> 10 <div style="height: 100px; width: 25px; background: orange;"></div> 11 <div style="height: 100px; width: 25px; background: blue; break-before: avoid;"></div> 12 13 <div style="height: 50px; width: 25px; background: pink;"></div> 14 <div style="height: 50px; width: 25px; background: maroon;"></div> 15 16 <div style="height: 50px; width: 25px; background: purple; break-before: column;"></div> 17 <div style="height: 50px; width: 25px; background: yellow;"></div> 18 </div> 19 </div>