out-of-flow-in-multicolumn-063.html (1050B)
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-lr; 11 direction: rtl; 12 columns: 2; 13 column-fill: auto; 14 height: 100px; 15 width: 100px; 16 column-gap: 0px; 17 margin-top: 66px; 18 margin-left: -50px; 19 } 20 .rel { 21 position: relative; 22 inset-block-start: 50px; 23 inset-inline-start: 50px; 24 } 25 .abs { 26 position: absolute; 27 inline-size: 50px; 28 block-size: 200px; 29 inset-block-start: 0; 30 inset-inline-start: 0; 31 background: green; 32 } 33 </style> 34 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 35 <div class="multicol"> 36 <div> 37 <span class="rel"> 38 <div style="block-size: 200px; inline-size: 50px; background: red;"></div> 39 <div class="abs"></div> 40 </span> 41 </div> 42 </div>