2 <!-- Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/ -->
6 <title>CSS Flexbox Test Reference: Fragmentation of single-line column flex container
</title>
7 <link rel=
"author" title=
"Ting-Yu Lin" href=
"mailto:tlin@mozilla.com">
8 <link rel=
"author" title=
"Mozilla" href=
"http://www.mozilla.org/">
12 writing-mode: vertical-lr;
20 border:
5px solid orange;
21 margin-block-end:
5px; /* Just to separate each sub-testcase visually. */
25 /* border-width is
0 by default; some sub-testcases will increase it. */
26 border:
0 solid lightgray;
30 border-block-width:
10px;
37 /* Note: flex items are in visual order as
"CMYK": cyan, magenta, yellow, black. */
42 nav, article, footer {
53 inset-inline-start:
5px;
59 inset-inline-start:
10px;
64 <!-- Basic one without any margin/border/padding. -->
65 <div class=
"multicol">
66 <div class=
"flexContainer">
67 <header></header><nav></nav><article></article><footer></footer>
71 <!-- Test a container with margin-block-start. -->
72 <div class=
"multicol">
73 <div class=
"flexContainer" style=
"margin-block-start: 25px">
74 <header></header><nav></nav><article></article><footer></footer>
78 <!-- Test a container not at the top of the column/page. -->
79 <div class=
"multicol">
80 <div style=
"block-size: 25px"></div>
81 <div class=
"flexContainer">
82 <header></header><nav></nav><article></article><footer></footer>
86 <!-- Test a container with border and padding. -->
87 <div class=
"multicol">
88 <div class=
"flexContainer border-padding">
89 <header></header><nav></nav><article></article><footer></footer>
93 <!-- Test a container with border, padding, and row-gap. -->
94 <div class=
"multicol">
95 <div class=
"flexContainer border-padding">
96 <header></header><div class=
"gap"></div><nav></nav><div class=
"gap"></div><article></article><div class=
"gap"></div><footer></footer>