Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-grid/masonry/tentative/item-placement/dense-packing/row-dense-packing-003.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<html>
<link rel="match" href="row-dense-packing-003-ref.html">
<link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
<style>
.masonry {
    display: masonry;
    background: gray;
    item-tolerance: 0;
    masonry-direction: row;
    grid-template-rows: repeat(3, 50px);
    grid-auto-flow: dense;
}
</style>
<body>
  <p>Ensure that dense-packing does not affect the layout when all items are single-spanning.</p>
  <div class="masonry">
    <div style="background: lightskyblue; width: 20px;" >
     1
    </div>
    <div style="background: lightcoral; width: 60px;" >
      2
    </div>
    <div style="background: lightgreen; width: 60px;">
      3
    </div>
    <div style="background: brown; width: 10px;">
      4
    </div>
    <div style="background: red; width: 40px;">
      5
    </div>
    <div style="background: pink; width: 40px;">
      6
    </div>
    <div style="background: yellow; width: 40px;">
      7
    </div>
  </div>
</body>
</html>