Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<html>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="match" href="column-dense-packing-multi-span-011-ref.html">
<link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
<style>
.grid-lanes {
display: grid-lanes;
item-tolerance: 0;
grid-template-columns: repeat(3, 50px);
grid-auto-flow: dense;
}
</style>
<body>
<p>Ensure that open tracks are used when dense-packing a multi-span item.</p>
<div class="grid-lanes">
<div style="background: lightskyblue; height: 60px;" >
1
</div>
<div style="background: darkblue; height: 20px; grid-column: 1 / span 2;">
2
</div>
<div style="background: yellow; height: 20px; grid-column: span 2;">
3
</div>
<div style="background: skyblue; height: 10px; grid-column: span 3;">
4
</div>
<div style="background: lightskyblue; height: 70px; grid-column: 3;" >
5
</div>
<div style="background: darkblue; height: 50px; grid-column: 2 / span 2;">
6
</div>
<div style="background: yellow; height: 50px; grid-column: span 2;">
7
</div>
</div>
</body>
</html>