abspos-after-spanner.html (727B)
1 <!DOCTYPE html> 2 <title>Abspos element after a column spanner</title> 3 <link rel="help" href="https://drafts.csswg.org/css-multicol/"> 4 <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> 5 <style> 6 .multicol { 7 columns: 2; 8 column-fill: auto; 9 column-gap: 0px; 10 margin-top: -10px; 11 } 12 .abs { 13 position: absolute; 14 width: 100px; 15 height: 100px; 16 background-color: green; 17 } 18 </style> 19 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 20 <div class="multicol"> 21 <div style="column-span: all; height: 10px;"></div> 22 <div class="abs"></div> 23 <div style="height: 30px; width: 30px; background-color: red;"></div> 24 <div style="height: 70px;"></div> 25 </div>