blob: 2ee6901e7dcb276131f72c6aac88ab3018dd73fd (
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
|
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<meta charset="utf-8">
<title>CSS Flexbox Test Reference: Fragmentation of multi-line column flex container</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<style>
.multicol {
block-size: 50px;
inline-size: 190px;
column-width: 40px;
column-fill: auto;
column-gap: 10px;
border: 5px solid orange;
margin-block-end: 5px; /* Just to separate each sub-testcase visually. */
}
.flexContainer {
background: gray;
/* border-width is 0 by default; some sub-testcases will increase it. */
border: 0 solid lightgray;
}
.border-padding {
border-block-width: 10px;
padding-block: 5px;
}
.gap {
block-size: 5px;
}
/* Note: flex items are in visual order as "CMYK": cyan, magenta, yellow, black. */
header {
background: cyan;
block-size: 50px;
}
nav, article, footer {
inline-size: 30px;
}
nav {
background: magenta;
block-size: 25px;
}
article {
background: yellow;
block-size: 25px;
position: relative;
inset-inline-start: 5px;
}
footer {
background: black;
block-size: 50px;
position: relative;
inset-inline-start: 10px;
}
</style>
<body>
<!-- Basic one without any margin/border/padding. -->
<div class="multicol">
<div class="flexContainer">
<header></header><nav></nav><article></article><footer></footer>
</div>
</div>
<!-- Test a container with margin-block-start. -->
<div class="multicol">
<div class="flexContainer" style="margin-block-start: 25px">
<header></header><nav></nav><article></article><footer></footer>
</div>
</div>
<!-- Test a container not at the top of the column/page. -->
<div class="multicol">
<div style="block-size: 25px"></div>
<div class="flexContainer">
<header></header><nav></nav><article></article><footer></footer>
</div>
</div>
<!-- Test a container with border and padding. -->
<div class="multicol">
<div class="flexContainer border-padding">
<header></header><nav></nav><article></article><footer></footer>
</div>
</div>
<!-- Test a container with border, padding, and row-gap. -->
<div class="multicol">
<div class="flexContainer border-padding">
<header></header><div class="gap"></div><nav></nav><div class="gap"></div><article></article><div class="gap"></div><footer></footer>
</div>
</div>
</body>
</html>
|