row-auto-repeat-012.html (766B)
1 <!DOCTYPE html> 2 <title>Auto repeat tracks with multiple tracks and gutters.</title> 3 <link rel="help" href="https://drafts.csswg.org/css-grid-3"> 4 <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> 5 <link rel="match" href="row-auto-repeat-012-ref.html"> 6 <style> 7 .grid-lanes { 8 display: grid-lanes; 9 border: solid thick; 10 margin: 10px; 11 grid-lanes-direction: row; 12 grid-template-rows: repeat(auto-fill, 50px 50px); 13 grid-row-gap: 100px; 14 height: 300px; 15 width: min-content; 16 background: pink; 17 } 18 .grid-lanes > div { 19 background: lime; 20 width: 50px; 21 height: 100%; 22 } 23 </style> 24 <p>The test passes if it has the same visual effect as reference.</p> 25 <div class="grid-lanes"> 26 <div></div> 27 <div></div> 28 <div></div> 29 <div></div> 30 </div>