blob: 608dc25f50ff61d27326ca06bfe824dc76d82f62 (
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
|
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Reference: Testing grid minmax(min-content,max-content) column/rows</title>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1151212">
<style type="text/css">
body,html { color:black; background:white; font-size:8px; line-height:10px; padding:0; margin:0; }
.grid {
display: block;
border: 2px solid green;
overflow: hidden;
clear: both;
}
.float { float:left; clear:both; border: 2px dashed blue;}
span {
background: lime;
border-style: solid;
border-width: 1px 3px 5px 7px;
float: left;
}
x10 { display:inline-block; width:10px; height:10px; background:yellow; }
x30 { display:inline-block; width:30px; height:30px; background:cyan; }
.c2,.r2 { width:20px; height:20px; background: silver; }
.r2 { background: pink; }
.c1 { margin: 1px 3px 5px 7px; }
.v {
writing-mode:vertical-lr;
-webkit-writing-mode:vertical-lr;
}
</style>
</head>
<body>
<div class="grid">
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c2"></span>
<span class="r2" style="clear:left"></span>
</div>
<div class="grid">
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c2"></span>
<span class="r2" style="clear:left"></span>
</div>
<div class="grid float">
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c2"></span>
<span class="r2" style="clear:left"></span>
</div>
<div class="grid float">
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c2"></span>
<span class="r2" style="clear:left"></span>
</div>
<div class="grid">
<span class="c1 v"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c2"></span>
<span class="r2" style="clear:left"></span>
</div>
<div class="grid">
<span class="c1 v"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c2"></span>
<span class="r2" style="clear:left"></span>
</div>
<div class="grid float v">
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c2" style="background:pink"></span>
<span class="r2" style="clear:left;background:silver"></span>
</div>
<div class="grid float v">
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c2" style="background:pink"></span>
<span class="r2" style="clear:left;background:silver"></span>
</div>
<div class="grid float v" style="padding-bottom:4px">
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c2"></span>
<span class="r2" style="clear:left;"></span>
</div>
<div class="grid" style="position:relative">
<span class="c1 v" style="min-width:100px;"><x10>X</x10><x30>y</x30><x10 style="visibility:hidden">z</x10></span>
<span class="c1" style="min-width:50px;margin-left:-113px; border:none; padding:1px 3px 5px 7px; background:none"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c1" style="min-width:10px;max-width:10px;margin-left:-113px"><x10>X</x10><x30>y</x30><x10>z</x10></span>
<span class="c2"></span>
<span class="r2" style="clear:left"></span>
</div>
</body>
</html>
|