Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<html>
<title>Auto repeat tracks with fixed size and replaced items</title>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="match" href="row-auto-repeat-auto-027-ref.html">
<style>
.masonry {
display: masonry;
item-tolerance: 0;
masonry-direction: row;
grid-template-rows: repeat(auto-fill, auto);
height: 400px;
gap: 10px;
}
img {
height: 100%;
width: auto;
aspect-ratio: 1;
display: block;
}
</style>
<div class="masonry">
<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>
<img src="../../../resources/pink-image.png" width="113" height="120"></img>
</div>
</html>