blob: 9cb3c82a3cc973e63ff68fe9a380f8450ff07c39 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
<!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: grid abs.pos. child in grid with gutters</title>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1230695">
<link rel="help" href="https://drafts.csswg.org/css-grid/#abspos">
<link rel="match" href="grid-abspos-items-013-ref.html">
<style type="text/css">
body { width:800px; }
.grid {
display: grid;
position: relative;
grid-template-columns: repeat(5, 20px);
grid-auto-rows: 10px;
grid-gap: 10px 100px;
border: 1px solid;
padding: 0 3px 0 5px;
height: 40px;
margin-bottom: 2px;
}
.grid.r {
grid-template-columns: 20px;
grid-template-rows: repeat(5, 20px);
height: 160px;
padding: 2px 3px 4px 5px;
float: left;
min-width: 70px;
margin-right: 2px;
}
.c.s {
justify-content: space-evenly;
grid-gap: 0;
}
x {
background: lime;
}
a {
position: absolute;
left:0; right:0; bottom:20px; height: 3px;
background: black;
}
b {
position: absolute;
left:0; right:0; bottom:10px; height: 3px;
background: grey;
}
c {
position: absolute;
left:0; right:0; bottom:0; height: 3px;
background: blue;
}
.r a {
left:50px; top:0; bottom:0; width: 3px; height:auto;
}
.r b {
left:40px; top:0; bottom:0; width: 3px; height:auto;
}
.r c {
left:30px; top:0; bottom:0; width: 3px; height:auto;
}
</style>
</head>
<body>
<div class="grid c">
<x></x><x></x><x></x><x></x>
<a style="grid-column:2/4"></a><b style="grid-column:auto/4"></b><c style="grid-column:4/auto"></c>
</div>
<div class="grid c">
<x></x><x></x><x></x><x></x>
<a style="grid-column:1/4"></a><b style="grid-column:auto/1"></b><c style="grid-column:1/auto"></c>
</div>
<div class="grid c">
<x></x><x></x><x></x><x></x>
<a style="grid-column:6/6"></a><b style="grid-column:auto/6"></b><c style="grid-column:6/auto"></c>
</div>
<div class="grid c s">
<x></x><x></x><x></x><x></x>
<a style="grid-column:2/4"></a><b style="grid-column:auto/4"></b><c style="grid-column:4/auto"></c>
</div>
<div class="grid c s">
<x></x><x></x><x></x><x></x>
<a style="grid-column:1/4"></a><b style="grid-column:auto/1"></b><c style="grid-column:1/auto"></c>
</div>
<div class="grid c s">
<x></x><x></x><x></x><x></x>
<a style="grid-column:6/6"></a><b style="grid-column:auto/6"></b><c style="grid-column:6/auto"></c>
</div>
<div class="grid r">
<x></x><x></x><x></x><x></x>
<a style="grid-row:2/4"></a><b style="grid-row:auto/4"></b><c style="grid-row:4/auto"></c>
</div>
<div class="grid r">
<x></x><x></x><x></x><x></x>
<a style="grid-row:1/4"></a><b style="grid-row:auto/1"></b><c style="grid-row:1/auto"></c>
</div>
<div class="grid r">
<x></x><x></x><x></x><x></x>
<a style="grid-row:6/6"></a><b style="grid-row:auto/6"></b><c style="grid-row:6/auto"></c>
</div>
</body>
</html>
|