blob: 3bc177eb27bfc142d71a15fa52f212bfe412a63f (
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
|
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<title>CSS Test: Testing placement of abs.pos. grid items in negative implicit grid</title>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1107783">
<link rel="help" href="http://dev.w3.org/csswg/css-grid/#abspos-items">
<meta charset="utf-8">
<style type="text/css">
body,html { color:black; background:white; font-size:16px; padding:0; margin:0; }
.grid {
/*display: grid;*/
position: relative;
border: 1px solid;
grid-auto-flow: row;
grid-auto-columns: 23px;
grid-auto-rows: 7px;
padding: 1px 7px 3px 13px;
width: 200px;
height: 60px;
}
.a {
position: absolute;
left: 59px; top: 22px;
height: 12px; width: 44px;
}
.abs {
position: absolute;
opacity: 0.7;
width: 21px;
height: 5px;
}
.b {
left: 1px; top: 3px; bottom: 1px;
width: 74px; height: auto;
}
.c {
left: 1px; top: 3px;
width: 51px; height: 2px;
}
.d {
left: 1px; top: 5px;
width: 212px; height: 7px;
}
.e {
right: 5px; bottom: 1px;
width: 212px; height: 58px;
}
.f {
right: 5px; bottom: 1px;
width: 212px; height: 58px;
}
span {
background: lime;
border: 1px solid;
}
</style>
</head>
<body>
<div class="grid">
<span class="a"></span>
<span class="b abs">b</span>
</div>
<div class="grid">
<span class="a"></span>
<span class="c abs">c</span>
</div>
<div class="grid">
<span class="a"></span>
<span class="d abs">d</span>
</div>
<div class="grid">
<span class="a"></span>
<span class="e abs">e</span>
</div>
<div class="grid">
<span class="a"></span>
<span class="f abs">f</span>
</div>
<div class="grid">
<span class="b abs" style="width:212px">b</span>
</div>
<div class="grid">
<span class="c abs">c</span>
</div>
<div class="grid">
<span class="d abs" style="height:56px;"></span>
</div>
<div class="grid">
<span class="e abs">e</span>
</div>
<div class="grid">
<span class="f abs">f</span>
</div>
</body>
</html>
|