page-break-margins-002.xht (897B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 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>