multi-line-column-flex-fragmentation-036.tentative.html (1330B)
1 <!DOCTYPE html> 2 <title> 3 Multi-line column flex fragmentation: tall content inside constrained block. 4 </title> 5 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/6056#issuecomment-951767882"> 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-direction: column; 12 flex-wrap: wrap; 13 height: 75px; 14 } 15 #flex > div { 16 width: 50%; 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; background: red;"> 21 <div style="columns: 2; column-fill: auto; column-gap: 0; height: 75px;"> 22 <div id="flex"> 23 <div style="height: 50px; background: green;"></div> 24 <div style="height: 25px; background: red;"> 25 <div style="contain: size; height: 50px; background: green;"></div> 26 <div style="contain: size; height: 100px; background: green;"></div> 27 </div> 28 <div style="height: 50px; background: green;"></div> 29 <div style="height: 25px; background: red;"> 30 <div style="contain: size; height: 50px; background: green;"></div> 31 <div style="contain: size; height: 100px; background: green;"></div> 32 </div> 33 </div> 34 </div> 35 </div>