orphans-003.xht (1303B)
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: breaks inside elements: orphans - inheritance</title> 5 <link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/> 6 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/page.html#break-inside"/> 8 <meta name="flags" content="paged" /> 9 <meta name="assert" content="The 'orphans' property is inherited."/> 10 <style type="text/css"> 11 html, body { 12 height: 100%; 13 line-height: 1; 14 font-size: 20px; 15 } 16 * { 17 margin:0; 18 padding:0; 19 } 20 div.spacer { 21 height:50%; 22 } 23 div.backup { 24 margin-top: -4em; 25 } 26 27 .test { 28 color: blue; 29 width: 1em; 30 } 31 html { 32 orphans: 5; 33 } 34 35 </style> 36 </head> 37 <body> 38 <div class="spacer">This test requires 2 pages. The blue text must 39 denote accurate page numbers. Lines A-G must appear on the next 40 page.</div> 41 42 <div class="spacer backup"></div> 43 <div class="test"> 44 Page 2 Line A 45 Page 2 Line B 46 Page 2 Line C 47 Page 2 Line D 48 Page 2 Line E 49 Page 2 Line F 50 Page 2 Line G 51 </div> 52 </body> 53 </html>