Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<style>
.grid {
display: grid;
grid-template-columns: repeat(8, 50px);
height: 200px;
width: 500px;
gap: 10px;
}
.grid > div {
width: 50px;
height: 100px;
background-color: orange;
}
</style>
<div class="grid">
<div style="grid-column: span 3; width: 150px;"></div>
<div style="grid-column: -1;"></div>
</div>
</html>