multi-line-row-flex-fragmentation-056.html (903B)
1 <!DOCTYPE html> 2 <title> 3 Multi-line row flex fragmentation: Item overflow and stretching w/ vertical 4 writing-mode. 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 } 13 #flex > div { 14 background: green; 15 inline-size: 50%; 16 } 17 </style> 18 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 19 <div style="writing-mode: vertical-lr;"> 20 <div style="inline-size: 100px; block-size: 100px; columns: 5; column-gap: 0; column-fill: auto; position: relative; background: red;"> 21 <div id="flex"> 22 <div style="block-size: 100px;"> 23 <div style="block-size: 200px;"></div> 24 </div> 25 <div></div> 26 <div style="block-size: 400px;"></div> 27 <div></div> 28 </div> 29 </div> 30 </div>