subgridded-axis-auto-repeater-001.html (435B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Grid Layout Test: Grid with a subgridded axis and an auto repeater as line name list</title> 6 <link rel="help" href="https://drafts.csswg.org/css-grid-2"> 7 <style> 8 #grid { 9 display: grid; 10 grid-template-columns: subgrid repeat(auto-fill, [b]); 11 } 12 </style> 13 </head> 14 <body> 15 <div id="grid"> 16 <div style="grid-column: b"></div> 17 </div> 18 </body> 19 </html>