column-wrap-no-constraints-001.html (758B)
1 <!DOCTYPE html> 2 <title>Auto height, column balancing, and column-wrap:wrap</title> 3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 4 <link rel="help" href="https://drafts.csswg.org/css-multicol-2/#cwr"> 5 <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> 6 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 7 <!-- Rows are allowed to wrap, but the block-size of the multicol container is 8 unconstrained, and there is no column-height specified, so there should be 9 just one row. --> 10 <div style="width:100px; height:100px; background:red;"> 11 <div style="columns:2; gap:20px 0; column-wrap:wrap;"> 12 <div style="height:200px; background:green;"></div> 13 </div> 14 </div>