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-024.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<html>
<title>Auto repeat tracks with fixed size and replaced items</title>
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="match" href="column-auto-repeat-auto-023-ref.html">
<style>
.masonry {
    display: masonry;
    item-tolerance: 0;
    grid-template-columns: repeat(auto-fill, auto);
    width: 400px;
    gap: 10px;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
</style>
<div class="masonry">
  <img id="test" src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
</div>
</html>