Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<style>
.grid {
    display: grid;
    grid-template-columns: 100px 100px;
    grid-template-rows: 100px 100px 100px;
    background: gray;
    height: 500px;
    width: 300px
}
</style>
<body>
  <div class="grid">
    <div style="background: lightskyblue; grid-column: 2;">
      Number 1
    </div>
    <div style="background: lightcoral; grid-column: 2;">
      Number 2
    </div>
    <div style="background: lightgreen; grid-column: 2;">
      Number 3
    </div>
    <div style="background: lightpink; grid-column: 2;">
      Number 4
    </div>
    <div style="background: orange; grid-column: 2;">
      Number 5
    </div>
  </div>
</body>
</html>