Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<style>
body { margin: 0; }
.lanes {
display: grid-lanes;
grid-lanes-direction: row fill-reverse;
width: 300px;
grid-template-rows: 120px 120px;
row-gap: 20px;
column-gap: 24px;
grid-lanes-pack: dense;
flow-tolerance: 0;
background: #cdd5e0;
}
.lanes > div {
background: #5b8def;
}
.lanes > div.a { grid-row: 1; width: 40px; }
.lanes > div.b { grid-row: 2; width: 100px; }
.lanes > div.c { grid-row: 1; width: 48px; }
.lanes > div.spanner {
grid-row: 1 / span 2;
width: 60px;
background: #8a6df0;
}
.col-rule { position: absolute; top: 0; width: 0; border-left: 4px solid gold; }
</style>
<div class="lanes">
<div class="a"></div>
<div class="b"></div>
<div class="spanner"></div>
<div class="c"></div>
</div>
<div class="col-rule" style="left: 102px; height: 120px;"></div>
<div class="col-rule" style="left: 186px; height: 120px;"></div>
<div class="col-rule" style="left: 186px; top: 140px; height: 120px;"></div>