single-line-column-flex-fragmentation-027.html (1101B)
1 <!DOCTYPE html> 2 <title> 3 OOF static position in a fragmented flexbox. 4 </title> 5 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination"> 6 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#abspos-items"> 7 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> 8 <style> 9 .abs { 10 background: green; 11 position: absolute; 12 width: 25px; 13 height: 100px; 14 } 15 </style> 16 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 17 <div style="columns:4; column-gap:0px; column-fill:auto; width:100px; height:100px;"> 18 <div style="display:flex; flex-direction:column; height:400px; position:relative;"> 19 <div style="height: 100px; width: 25px; background-color: red;"></div> 20 <div style="width: 25px;"> 21 <div style="height: 100px; width: 25px; background-color: green;"></div> 22 <div class="abs"></div> 23 <div style="height: 100px; width: 25px; background-color: red;"></div> 24 </div> 25 <div style="height: 100px; width: 25px; background-color: green;"></div> 26 <div class="abs"></div> 27 </div> 28 </div>