Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<style>
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, 50px);
height: 200px;
width: 500px;
gap: 10px;
}
.grid > div {
width: 100%;
height: 100px;
background-color: orange;
}
</style>
<div class="grid">
<div style="grid-column: span 4;">1</div>
<div style="grid-column: 4 / span 2;">2</div>
<div style="grid-column: 9 / span 2; grid-row: 1;">3</div>
<div style="grid-column: 7; grid-row: 1;">4</div>
<div style="grid-column: 9 / span 2;">5</div>
<div style="grid-column: 6; grid-row: 1;">6</div>
</div>
</html>