column-auto-repeat-005.html (792B)
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 width: 100px; 10 grid-template-columns: repeat(auto-fill, minmax(50px, 25px)); 11 } 12 </style> 13 <p>Test passes if there is a filled green square.</p> 14 <div class="grid-lanes"> 15 <div style="background: green; height: 50px; width: 100%;"></div> 16 <div style="background: green; height: 50px; width: 100%;"></div> 17 <div style="background: green; height: 50px; width: 100%;"></div> 18 <div style="background: green; height: 50px; width: 100%;"></div> 19 </div>