summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flexbox_margin-auto-overflow.html
blob: 8d7860f8866a14861a736119c3169d3b6d2d53f5 (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
<!DOCTYPE html>
<title>flexbox | margin: auto in overflow</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#auto-margins">
<link rel="match" href="flexbox_margin-auto-overflow-ref.html">
<style>
div {
	background: blue;
	margin: 1em 0;
	border: 1px solid black;
	height: 8em;
	width: 32em;
	position: relative;

	display: flex;
}
span {
	background: white;
	margin: 1em auto;
	width: 30em;
	display: inline-block;
	flex: 0 0 auto;
}
span+span {background: yellow;}
</style>

<div>
	<span>one</span>
	<span>two</span>
</div>