Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Grid with a subgridded axis and an auto repeater as line name list</title>
<style>
#grid {
display: grid;
grid-template-columns: subgrid repeat(auto-fill, [b]);
}
</style>
</head>
<body>
<div id="grid">
<div style="grid-column: b"></div>
</div>
</body>
</html>