blob: dd053512ba5c28f122c593329177488ea5f9cc54 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html>
<p>Check that a flexbox that starts at a column boundary is properly pushed to the next column.</p>
<p>The word "PASS" should be seen below.</p>
<div style="-webkit-columns:2; -webkit-column-gap:0; column-fill:auto; height:90px;">
<div style="height:80px;"></div>
<div style="display:flex;">
<div><div>PASS</div></div>
</div>
</div>
|