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