row-auto-repeat-025.html (1017B)
1 <!DOCTYPE html> 2 <html> 3 <title>Auto repeat tracks with fixed size and replaced items</title> 4 <link rel="help" href="https://drafts.csswg.org/css-grid-3"> 5 <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> 6 <link rel="match" href="row-auto-repeat-025-ref.html"> 7 <style> 8 .grid-lanes { 9 display: grid-lanes; 10 flow-tolerance: 0; 11 grid-lanes-direction: row; 12 grid-template-rows: repeat(auto-fill, 100px); 13 height: 400px; 14 width: 200px; 15 gap: 10px; 16 } 17 18 img { 19 height: 100%; 20 width: auto; 21 display: block; 22 } 23 </style> 24 <div class="grid-lanes"> 25 <img src="resources/pink-image.png" width="113" height="120"></img> 26 <img src="resources/pink-image.png" width="113" height="120"></img> 27 <img src="resources/pink-image.png" width="113" height="120"></img> 28 <img src="resources/pink-image.png" width="113" height="120"></img> 29 <img src="resources/pink-image.png" width="113" height="120"></img> 30 <img src="resources/pink-image.png" width="113" height="120"></img> 31 </div> 32 </html>