Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<head>
<title>CSS Test: page-break-inside: paged media</title>
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
<link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/>
<meta name="flags" content="paged" />
<meta name="assert" content="The 'page-break-inside' property applies to paged media only."/>
<style type="text/css">
@page {margin: 7%;}
html, body {
height: 100%;
line-height: 1;
font-size: 20px;
}
* {
margin: 0;
padding: 0;
}
div {
height: 100%;
}
#pusher {
height: 100%;
margin-bottom: -2em;
}
#test {
page-break-inside: avoid;
font-weight: bold;
color: blue;
}
</style>
</head>
<body>
<div>
<p id="pusher">On screen, only 'Line&nbsp;C' below this sentence must be hidden until you scroll, but, when paginated, all three lines should appear together on the second page.</p>
<div id="test">
<p>Line&nbsp;A</p>
<p>Line&nbsp;B</p>
<p>Line&nbsp;C</p>
</div>
</div>
</body>
</html>