Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<style>
.grid {
    display: grid;
    background: gray;
    position: relative;
    grid-template-columns: repeat(3, 50px);
    padding: 10px;
    grid-auto-flow: dense;
}
</style>
<body>
  <p>Ensure that dense-packing places items correctly based on the auto-placement cursor location when there are multiple gaps. Item 5 should go into the right-most gap.</p>
  <div class="grid">
    <div>
      <div style="background: lightskyblue; height: 20px;" >
        1
      </div>
      <div style="background: red; height: 40px;">
        6
      </div>
    </div>
    <div style="background: lightcoral; height: 60px;" >
      2
    </div>
    <div style="background: lightgreen; height: 20px;">
      3
    </div>
    <div style="background: brown; height: 10px; grid-column: span 3;">
      4
    </div>
    <div style="background:orchid; height: 10px; grid-column: span 2;">
      5
    </div>
  </div>
</body>
</html>