out-of-flow-in-multicolumn-066.html (904B)
1 <!DOCTYPE html> 2 <title> 3 Out-of-flow positioned element in multicol with inline containing 4 block and vertical-rl writing mode. 5 </title> 6 <link rel="help" href="https://www.w3.org/TR/css-position-3/#abspos-breaking"> 7 <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> 8 <style> 9 .multicol { 10 writing-mode: vertical-rl; 11 columns: 2; 12 column-fill: auto; 13 height: 100px; 14 width: 100px; 15 column-gap: 0px; 16 } 17 .abs { 18 position: absolute; 19 inline-size: 50px; 20 block-size: 200px; 21 inset-block-start: 0; 22 inset-inline-start: 0; 23 background: green; 24 } 25 </style> 26 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 27 <div class="multicol"> 28 <div> 29 <span style="position: relative;"> 30 <div style="block-size: 200px; inline-size: 50px; background: red;"></div> 31 <div class="abs"></div> 32 </span> 33 </div> 34 </div>