baseline-001.html (686B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://drafts.csswg.org/css-multicol-1"> 4 <link rel="help" href="https://drafts.csswg.org/css-align/#baseline-export"> 5 <meta name="assert" content="Look for the highest baseline of all the columns."> 6 <link rel="match" href="baseline-001-ref.html"> 7 <p>There should be a green square below.</p> 8 <div style="display:flex; align-items:baseline;"> 9 <div style="width:50px; height:100px; background:green;"><br></div> 10 <div style="columns:2; height:100px; column-fill:auto;"> 11 <div style="width:50px; height:100px; background:green;"></div> 12 <br> 13 </div> 14 </div>