Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<style>
.grid {
    display: grid;
    grid-template-columns: repeat(3, 50px);
    padding: 10px;
    grid-auto-flow: dense;
}
</style>
<body>
  <p>Ensure that dense-packing places items that span more than 1 track correctly into gaps.</p>
  <div class="grid">
    <div style="background: lightskyblue; height: 20px;" >
      1
    </div>
    <div style="background: lightcoral; height: 20px;" >
      2
    </div>
    <div style="background: lightgreen; height: 40px;">
      3
    </div>
    <div style="background:orchid; height: 10px; grid-column: span 2; transform: translateY(-20px);">
      5
    </div>
    <div style="background: brown; height: 10px; grid-column: span 3; transform: translateY(-10px);">
      4
    </div>
  </div>
</body>
</html>