text-indent-012-ref.xht (947B)
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 9 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> 10 11 <style type="text/css"><![CDATA[ 12 .control, .control2 13 { 14 background-color: yellow; 15 border: black solid 2px; 16 height: 60px; 17 position: absolute; 18 width: 200px; 19 } 20 21 .control {top: 75px;} 22 23 .control2 {top: 175px;} 24 25 .a, .b 26 { 27 background-color: orange; 28 height: 50px; 29 position: absolute; 30 width: 50px; 31 } 32 33 .b {left: 150px;} 34 ]]> 35 </style> 36 37 </head> 38 39 <body> 40 41 <p>The following two blocks should be identical.</p> 42 43 <div class="control"> 44 <div class="a"></div> 45 <div class="b"></div> 46 </div> 47 48 <div class="control2"> 49 <div class="a"></div> 50 <div class="b"></div> 51 </div> 52 53 </body> 54 </html>