column-balancing-with-span-and-oof-001.html (745B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-multicol-1/#column-span"> 3 <link rel="help" href="https://drafts.csswg.org/css-break/#breaking-rules"> 4 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> 5 <style> 6 #multicol { 7 column-count: 2; 8 column-fill: auto; 9 column-gap: 0px; 10 width: 100px; 11 } 12 .abs { 13 position: absolute; 14 width: 50px; 15 height: 200px; 16 top: 0; 17 background: green; 18 } 19 </style> 20 <p>Test passes if there is a filled green square.</p> 21 <div id="multicol"> 22 <div style="position: relative;"> 23 <div style="height: 100px;"></div> 24 <div class="abs"></div> 25 </div> 26 <div style="column-span: all;"></div> 27 <div style="height: 100px;"></div> 28 </div>