column-auto-repeat-013.html (723B)
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="column-auto-repeat-013-ref.html"> 6 <style> 7 .grid-lanes { 8 display: grid-lanes; 9 border: solid thick; 10 margin: 10px; 11 grid-template-columns: repeat(auto-fill, 50px 50px); 12 grid-column-gap: 100px; 13 width: 300px; 14 background: pink; 15 } 16 .grid-lanes > div { 17 background: lime; 18 width: 100%; 19 height: 50px; 20 } 21 </style> 22 <p>The test passes if it has the same visual effect as reference.</p> 23 <div class="grid-lanes"> 24 <div></div> 25 <div></div> 26 <div></div> 27 <div></div> 28 </div>