multi-line-row-flex-fragmentation-050-ref.html (797B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination"> 3 <div style="width: 100px; height: 100px; columns: 2; column-fill: auto; column-gap: 0;"> 4 <div style="height: 50px; width: 50px; background: green;"></div> 5 <div style="display: flex; flex-wrap: wrap; height: 200px;"> 6 <div style="height: 50px; width: 25px; background: yellow;"></div> 7 <div style="height: 50px; width: 25px; background: purple; break-before: column;"></div> 8 9 <div style="height: 50px; width: 25px; background: maroon;"></div> 10 <div style="height: 50px; width: 25px; background: pink;"></div> 11 12 <div style="height: 100px; width: 25px; background: blue; break-before: avoid;"></div> 13 <div style="height: 100px; width: 25px; background: orange;"></div> 14 </div> 15 </div>