multi-line-row-flex-fragmentation-024.html (771B)
1 <!DOCTYPE html> 2 <title> 3 Multi-line row flex fragmentation: the flex container consumes the 4 remaining fragmentainer space if a row breaks before. 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 <style> 9 #flex { 10 display: flex; 11 flex-wrap: wrap; 12 background: green; 13 } 14 </style> 15 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 16 <div style="width: 100px; height: 100px; columns: 2; column-gap: 0; column-fill: auto; position: relative; background: red;"> 17 <div id="flex"> 18 <div style="height: 50px; width: 50px;"></div> 19 <div style="height: 100px; width: 50px; break-before: column;"></div> 20 </div> 21 </div>