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/track-sizing/auto-repeat/intrinsic-auto-repeat/column-auto-repeat-auto-028.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<html>
<title>Auto repeat tracks with auto track sizes and % sized children with auto sized container</title>
<link rel="match" href="column-auto-repeat-auto-028-ref.html">
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<style>
.masonry {
    display: masonry;
    background: gray;
    item-tolerance: 0;
    grid-template-columns: repeat(auto-fill, auto);
    width: auto;
    height: auto;
}
.masonry > div {
    width: 100%;
    height: 100px;
}
</style>
<div class="masonry">
  <div style="background: lightskyblue;"></div>
  <div style="background: lightcoral;"></div>
  <div style="background: lightgreen;"></div>
</div>
</html>