Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<style>
.grid {
    display: grid;
    grid-template-columns: repeat(4, 50px);
}
</style>
<body>
  <p>Ensure that dense-packing in masonry only places items with specified tracks into track openings in those same specified tracks.</p>
  <div class="grid">
    <div style="background: brown; height: 20px; grid-column: span 2; grid-row: 1;"></div>
    <div style="background: darkgoldenrod; height: 20px; grid-column: span 4;"></div>
    <div style="background: tan; height: 40px; grid-column: 3 / span 2;"></div>
    <div style="background: brown; height: 20px; grid-column: span 4;"></div>
    <div style="background: yellow; height: 20px; grid-column: 1 / span 2; grid-row: 3;"></div>
    <div style="background: pink; height: 20px; grid-column: span 2; grid-row: 1;"></div>
  </div>
</body>
</html>