multi-line-column-flex-fragmentation-044-ref.html (992B)
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-direction: column; flex-wrap: wrap; height: 200px;"> 6 <div style="height: 50px; width: 25px; background: mediumaquamarine; break-before: column;"></div> 7 <div style="height: 50px; width: 25px; background: magenta;"></div> 8 <div style="height: 50px; width: 25px; background: maroon; break-before: avoid;"></div> 9 <div style="height: 50px; width: 25px; background: pink;"></div> 10 11 <div style="height: 50px; width: 25px; background: yellow;"></div> 12 <div style="height: 50px; width: 25px; background: purple;"></div> 13 <div style="height: 50px; width: 25px; background: blue; break-before: avoid;"></div> 14 <div style="height: 50px; width: 25px; background: orange;"></div> 15 </div> 16 </div>