background-root-024-ref.xht (758B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 5 <head> 6 7 <title>CSS Reftest Reference</title> 8 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> 9 10 <style type="text/css"> 11 html, body 12 { 13 height: 100%; 14 margin: 0px; 15 } 16 17 div#parent 18 { 19 background: url("support/cat.png") repeat-y 1em 1em; 20 height: 100%; 21 } 22 23 div#child 24 { 25 color: navy; 26 font: bold 2em sans-serif; 27 margin-left: 100px; 28 padding: 4em 3em; 29 } 30 </style> 31 32 </head> 33 34 <body> 35 36 <div id="parent"> 37 <div id="child">There should be a column of cats to the left of this page.</div> 38 </div> 39 40 </body> 41 </html>