Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<style>
.grid {
display: grid;
background: gray;
grid-template-rows: 100px 200px;
grid-template-columns: 100px 100px;
height: 500px;
width: 300px;
}
.grid > div {
height: 300px;
width: 100px;
grid-row: span 2;
}
</style>
<body>
<div class="grid">
<div style="background: lightskyblue;">
Number 1
</div>
<div style="background: lightcoral;">
Number 2
</div>
</div>
</body>
</html>