row-auto-repeat-005.html (821B)
1 <!DOCTYPE html> 2 <title>Auto repeater with minmax size.</title> 3 <link rel="help" href="https://drafts.csswg.org/css-grid-3"> 4 <link rel="match" href="../../../../../reference/ref-filled-green-100px-square-only.html"> 5 <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> 6 <style> 7 .grid-lanes { 8 display: grid-lanes; 9 grid-lanes-direction: row; 10 height: 100px; 11 grid-template-rows: repeat(auto-fill, minmax(50px, 25px)); 12 } 13 </style> 14 <p>Test passes if there is a filled green square.</p> 15 <div class="grid-lanes"> 16 <div style="background: green; width: 50px; height: 100%;"></div> 17 <div style="background: green; width: 50px; height: 100%;"></div> 18 <div style="background: green; width: 50px; height: 100%;"></div> 19 <div style="background: green; width: 50px; height: 100%;"></div> 20 </div>