Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE HTML>
<html><head>
<meta charset="utf-8">
<style>
html,body {
color:black; background-color:white; font:24px/1 monospace; padding:0; margin:0;
}
.grid-lanes {
display: inline-grid-lanes;
grid-template-rows: repeat(10, 10px) repeat(10, [a] 10px) [a];
padding: 20px 10px;
}
.subgrid {
display: grid;
grid-row: auto / span 10;
}
</style>
</head>
<body>
<div class="grid-lanes">
<div class="subgrid" style="grid: subgrid [a] [b] [c] [d] [e] [f] / 50px 50px;">
<div class="subgrid" style="grid: subgrid / subgrid; grid-column: span 2;">
<x style="grid-row: span 10; grid-column: 1; background: grey;"></x>
<x style="grid-row: span 3 / 6; grid-column: 2; background: orange;"></x>
</div>
</div>
</div>
</body>
</html>