page-break-margins-002

allowed page break margin handling

WeasyPrint

This browser

Flags
paged
Assertion
When a page break occurs in the vertical margin between sibling block boxes (or rows in a table), the used values of the adjoining 'margin-bottom' and 'margin-top' properties are set to '0'.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3 <head>
 4 <title>CSS Test: allowed page break margin handling</title>
 5 <link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com">
 6 <link rel="help" href="http://www.w3.org/TR/CSS21/page.html#page-break-props">
 7 <meta name="assert" content="When a page break occurs in the vertical margin between sibling block boxes (or rows in a table), the used values of the adjoining 'margin-bottom' and 'margin-top' properties are set to '0'.">
 8 <meta name="flags" content="paged">
 9 <style type="text/css">
10 	p {
11 		page-break-after: always;
12 		margin-bottom: 100in;
13 	}
14 	div {margin-top: 100in;}
15 </style>
16 </head>
17 <body>
18 	<p>When printed, this test requires two pages.</p>
19 	<div>This sentence must appear at the top of the second page.</div>
20 </body>
21 </html>