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-template-columns: repeat(2, 80px);
gap: 20px;
background: #cdd5e0;
width: max-content;
}
.lanes > div { background: #5b8def; }
.a { grid-column: 1; height: 60px; }
.b { grid-column: 2; height: 100px; }
.c { grid-column: 1; height: 40px; }
.s { grid-column: 1 / -1; height: 40px; background: #8a6df0; }
.row-rule { position: absolute; height: 0; border-top: 4px solid gold; }
</style>
<div class="lanes">
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
<div class="s"></div>
</div>
<div class="row-rule" style="top: 68px; left: 0; width: 80px;"></div>
<div class="row-rule" style="top: 128px; left: 0; width: 80px;"></div>
<div class="row-rule" style="top: 128px; left: 100px; width: 80px;"></div>