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/grid-lanes/tentative/track-sizing/auto-repeat/intrinsic-auto-repeat/row-auto-repeat-auto-027.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="row-auto-repeat-auto-027-ref.html">
<style>
.grid-lanes {
display: grid-lanes;
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="grid-lanes">
<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>