blob: 6e9305189e3d58b0026b4f0b76f37b1930cd3cb6 (
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
|
<html>
<head>
<style>
.class_2, .class_3 {
display: inline-grid;
grid: repeat(3, 6%) repeat(1, minmax(1em, 3%))/repeat(1, auto);
grid-row: i;
grid-auto-columns: 1px;
}
.class_2 {
grid-column: span 999999;
grid-template-columns: subgrid repeat(99999, [a]) repeat(auto-fill,[b]);
}
</style>
</head>
<body>
<big class="class_3">
<em class="class_2">
<x style="grid-column:b">A</x>
<x style="grid-column:a -1">A</x>
</em>
</big>
</body>
</html>
|