summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flexbox_direction-column-ref.html
blob: 9b91d50345528741a8cf3d889bc8212282e678cb (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
<!DOCTYPE html>
<title>flexbox | flex-direction: column</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
div {
	background: blue;
	margin: 1em 0;
	border: 1px solid black;
}
span {
	background: white;
	margin: 1em;
	width: 8em;
	display: block;
}
span~span {
	margin: 2em 1em 1em;
}
</style>

<div>
	<span>filler</span>
	<span>filler</span>
	<span>filler</span>
	<span>filler</span>
</div>