text-indent-applies-to-012-ref.xht (1324B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>test reference</title> 5 <meta name="flags" content="ahem" /> 6 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 7 <style type="text/css"> 8 div 9 { 10 font: 16px/1em Ahem; 11 } 12 #table 13 { 14 display: table; 15 width: 100%; 16 } 17 #test 18 { 19 display: table-column-group; 20 } 21 #row 22 { 23 display: table-row; 24 } 25 #cell 26 { 27 display: table-cell; 28 } 29 #div1 30 { 31 background: blue; 32 height: 1em; 33 width: 6em; 34 } 35 </style> 36 </head> 37 <body> 38 <p>Test passes if the black box below is directly above the blue box. (Note that the two boxes do not need to be touching.)</p> 39 <div id="table"> 40 <div id="test"></div> 41 <div id="row"> 42 <div id="cell">XXXXXX</div> 43 </div> 44 </div> 45 <div id="div1"></div> 46 </body> 47 </html>