blob: ee873468730169c29d636d0ee59b7449f0e55295 (
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
|
<!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: Testing track max-sizing 'max-content'</title>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1151212">
<link rel="help" href="http://dev.w3.org/csswg/css-grid/#valdef-grid-template-columns-max-content">
<link rel="match" href="grid-col-max-sizing-max-content-001-ref.html">
<style type="text/css">
body,html { color:black; background:white; font-size:16px; padding:0; margin:0; }
.grid {
display: grid;
grid-auto-columns: minmax(min-content,max-content);
border: dashed blue;
float:left;
clear:left;
justify-items: stretch;
}
.c1 { grid-column: 1 / span 2; min-width:40px; }
.r1 { grid-column: 2 / span 3; min-width:70px; }
.c3 { grid-column: 3 / span 1; min-width:0; }
span {
background: gray;
border-style: solid;
border-width: 1px 3px 5px 7px;
padding: 1px 3px;
margin: 1px 5px;
}
x { display:inline-block; width:10px; height:18px; }
</style>
</head>
<body>
<div class="grid">
<span class="c1"><x> </x></span>
<span class="r1"><x> </x></span>
</div>
<div class="grid">
<span class="c1"><x> </x></span>
<span class="r1"><x> </x></span>
<span class="c3"><x> </x></span>
</div>
<div class="grid">
<span class="c1"><x> </x></span>
<span class="r1"><x> </x></span>
<span class="r1"><x> </x></span>
<span class="r1"><x> </x></span>
</div>
<div class="grid" style="grid-template-columns: minmax(min-content,max-content) 400px;">
<span class="c1"><x> </x></span>
<span class="r1"><x> </x></span>
<span class="c3"><x> </x></span>
</div>
<div class="grid" style="width:500px;">
<span class="c1" style="min-width:20px"><x> </x></span>
<span class="r1" style="min-width:10px"><x> </x></span>
<span class="r1" style="min-width:30px"><x> </x></span>
<span class="r1" style="min-width:10px"><x> </x></span>
</div>
<div class="grid" style="grid-template-columns: minmax(min-content,max-content) minmax(min-content,500px);">
<span class="c1"><x> </x></span>
<span class="r1"><x> </x></span>
<span class="c3"><x> </x></span>
</div>
<div class="grid">
<span class="c1" style="width:100px"><x> </x></span>
<span class="r1" style="width:300px"><x> </x></span>
<span class="c3"><x> </x></span>
</div>
<div class="grid">
<span class="c1" style="width:100px; border-sizing:border-box"><x> </x></span>
<span class="r1" style="width:300px; border-sizing:border-box"><x> </x></span>
<span class="c3"><x> </x></span>
</div>
</body>
</html>
|