out-of-flow-in-multicolumn-065.html (934B)
1 <!DOCTYPE html> 2 <title> 3 Nested out-of-flow positioned element in multicol with vertical-rl writing 4 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 column-gap: 0; 14 height: 100px; 15 width: 100px; 16 background: red; 17 color: red; 18 } 19 .fixed { 20 position: fixed; 21 inline-size: 50px; 22 block-size: 200px; 23 inset-block-start: 0; 24 inset-inline-start: 0; 25 background: green; 26 } 27 </style> 28 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 29 <div class="multicol"> 30 <div style="transform: translateX(0);"> 31 FAIL 32 <div style="position: relative;"> 33 <div style="position: absolute;"> 34 <div class="fixed"></div> 35 </div> 36 </div> 37 </div> 38 </div>