Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-gaps/grid-lanes/column-gap-decorations-029.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Gap Decorations: column rules broken by a densely packed spanner in grid-lanes (no row rules)</title>
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<link rel="match" href="column-gap-decorations-029-ref.html">
<style>
body { margin: 0; }
.lanes {
display: grid-lanes;
grid-template-columns: repeat(3, 60px);
grid-lanes-pack: dense;
flow-tolerance: 0;
gap: 10px;
background: #cdd5e0;
width: max-content;
column-rule: 4px solid blue;
}
.lanes > div {
background: #5b8def;
color: #fff;
font: 600 12px/1 sans-serif;
}
.lanes > div.tall { height: 100px; }
.lanes > div.last-track { grid-column: 3; height: 40px; }
.lanes > div.full-span { grid-column: 1 / -1; height: 40px; }
.lanes > div.dense-spanner {
grid-column: span 2;
height: 20px;
background: #8a6df0;
}
</style>
<div class="lanes">
<div class="tall">1</div>
<div class="last-track">2</div>
<div class="full-span">3 (span 3)</div>
<div class="dense-spanner">4 (dense span 2)</div>
</div>