Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<title>flexbox | break-after, line</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<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>