blob: eeb97967f7a248680166cacab8b5191e165f5976 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!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>
<link rel="help" href="https://drafts.csswg.org/css-grid-2">
<style>
.grid {
display: grid;
}
.subgrid {
grid-template-columns: subgrid repeat(auto-fill, [x]);
}
</style>
</head>
<body>
<div class="grid">
<div class="grid subgrid">
<div style="grid-column: x"></div>
</div>
</div>
</body>
</html>
|