summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/interactive/flexbox_interactive_break-after-line.html
blob: 74b7033603321c8bbe86334289d4f0526eab47c6 (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
<!DOCTYPE html>
<title>flexbox | break-after, line</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#pagination">
<meta name="flags" content="interact paged">
<style>
* {widows: 1; orphans: 1;}
div {
	width: 20em;

	display: flex;
	flex-wrap: wrap;
}
p {
	background: white;
	margin: 0;
	width: 100%;
	height: 2em;

	flex: 1 0 auto;
}
p+p {background: red;}
@media projection, print {
	p:first-child {
		break-after: always;
		background: yellow;
	}
}
</style>

<h4>Enter fullscreen or print preview. There should be no red on the
	first page.</h4>

<div>
	<p></p>
	<p></p>
</div>