multi-line-row-flex-fragmentation-036.html (666B)
1 <!DOCTYPE html> 2 <title> 3 Multi-line row flex fragmentation: empty rows with alignment. 4 </title> 5 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination"> 6 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> 7 <style> 8 #flex { 9 display: flex; 10 flex-wrap: wrap; 11 height: 200px; 12 align-content: flex-end; 13 background: green; 14 } 15 #flex > div { 16 width: 50px; 17 } 18 </style> 19 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 20 <div style="width: 100px; height: 100px; columns: 2; column-gap: 0; position: relative;"> 21 <div id="flex"> 22 <div></div> 23 <div></div> 24 </div> 25 </div>