Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<style>
.grid-lanes {
display: grid-lanes;
background: gray;
grid-template-columns: repeat(2, auto 50px);
width: 900px;
height: 400px;
}
.grid-lanes > div {
height: 100px;
}
</style>
<body>
<div class="grid-lanes">
<div style="background: lightskyblue; grid-column: span 3; width: 400px;">
Number 1
</div>
<div style="background: lightcoral; grid-column: span 2; width: 200px;">
Number 2
</div>
<div style="background: purple; width: 75px;">
Number 3
</div>
<div style="background: plum; grid-column: span 5; width: 650px;">
Number 4
</div>
<div style="background: yellow; grid-column: span 6; width: 400px">
Number 5
</div>
<div style="background: orange; grid-column: span 3; width: 300px;">
Number 6
</div>
<div style="background: lime; width: 150px;">
Number 7
</div>
<div style="background: pink; grid-column: span 2; width: 200px;">
Number 8
</div>
</div>
</body>
</html>