multi-line-row-flex-fragmentation-057.html (1279B)
1 <!DOCTYPE html> 2 <title> 3 Multi-line row flex fragmentation with items in the same row ending layout 4 in different fragmentainers w/ vertical 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: 10px; 16 } 17 .abs { 18 position: absolute; 19 inline-size: 10px; 20 block-size: 100px; 21 background: green; 22 } 23 </style> 24 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 25 <div style="writing-mode: vertical-rl;"> 26 <div style="inline-size: 100px; block-size: 100px; columns: 5; column-gap: 0; column-fill: auto; background: red;"> 27 <div id="flex"> 28 <div style="block-size: 300px;"></div> 29 <div style="position: relative; block-size: 200px;"> 30 <div style="inline-size: 10px; block-size: 200px;"></div> 31 <div class="abs"></div> 32 </div> 33 <div style="block-size: 200px;"></div> 34 <div style="position: relative; block-size: 100px;"> 35 <div style="inline-size: 10px; block-size: 100px;"></div> 36 <div class="abs"></div> 37 </div> 38 </div> 39 </div> 40 </div>