1629575-1.html (470B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 .grid-container { 5 display: grid; 6 /* Repeat auto-fill which is less than the number of elements in the grid. */ 7 grid-template-columns: 1px 1px 1px 1px repeat(auto-fill, 1px 1px 1px); 8 width: 13px; 9 } 10 div > div { 11 /* Any name will work */ 12 grid-column-start: x; 13 } 14 </style> 15 <div class="grid-container"> 16 <div>x</div> 17 <div>y</div> 18 <div>z</div> 19 <div>w</div> 20 </div> 21 </html>