Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/crashtests/zero-column-height.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>zero column-height</title>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<!-- zero row-gap -->
<div style="columns:2; column-fill:auto; column-height:0px; row-gap:0px; column-wrap:wrap;">
<div style="height:10px;"></div>
<div style="height:10px;"></div>
</div>
<!-- non-zero row-gap -->
<div style="columns:2; column-fill:auto; column-height:0px; row-gap:100px; column-wrap:wrap;">
<div style="height:10px;"></div>
<div style="height:10px;"></div>
</div>
<!-- zero row-gap with spanner -->
<div style="columns:2; column-fill:auto; column-height:0px; row-gap:0px; column-wrap:wrap;">
<div style="height:10px;"></div>
<div style="column-span:all; height:10px;"></div>
<div style="height:10px;"></div>
</div>