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