Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<style>
.grid {
display: grid;
background: gray;
grid-template-columns: repeat(1, auto auto 100px);
grid-template-rows: repeat(4, 100px);
width: 900px;
height: 300px;
}
.grid > div {
width: 300px;
height: 100px;
grid-column: span 2;
}
</style>
<body>
<div class="grid">
<div style="background: lightskyblue;">
Number 1
</div>
<div style="background: lightcoral;">
Number 2
</div>
<div style="background: purple;">
Number 3
</div>
<div style="background: plum;">
Number 4
</div>
</div>
</body>
</html>