blob: d3bb734447f6b724f21f0ce4dc2c9d15276523ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>CSS Grid Test: subgrid line names do not apply to non-subgrids</title>
<link rel="author" title="Kurt Catti-Schmidt" href="mailto:kschmi@microsoft.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-2">
<link rel="match" href="line-names-011-ref.html">
<style>
html,body {
color:black; background-color:white; font:12px/1 monospace; padding:0; margin:0;
}
div > div { background: grey; grid-column:2 / span 2; }
i {
grid-row: 1;
counter-increment: i;
}
i::before { content: counter(i, decimal); }
x { background: silver; }
</style>
</head>
<body>
<div style="display:grid; grid-template-columns: subgrid [a] [b] [c] [d];">
<i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i>
<x style="grid-column: a / d">x</x>
</div>
<div style="display:grid; grid-template-columns: 'auto [a] auto [b]';">
<i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i>
<div style="display:grid; grid:subgrid [c] [d] [d] [e] / auto; ">
<x style="grid-column: c">x</x>
</div>
</div>
</body>
</html>
|