single-line-row-flex-fragmentation-023.html (934B)
1 <!DOCTYPE html> 2 <title> 3 Single-line row flex fragmentation: Tall margins. 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 position: relative; 11 } 12 #flex > div { 13 width: 10px; 14 background: green; 15 } 16 </style> 17 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 18 <div style="width: 100px; height: 100px; columns: 5; column-gap: 0; column-fill: auto; background: red;"> 19 <div id="flex"> 20 <div style="margin-top: 250px; height: 250px;"></div> 21 <div style="margin-top: 100px; height: 100px;"></div> 22 <div style="position: absolute; height: 100px; width: 30px;"></div> 23 <div style="position: absolute; height: 50px; top: 200px;"></div> 24 <div style="position: absolute; height: 300px; top: 200px; left: 10px;"></div> 25 </div> 26 </div>