1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Text-indent application on a 'display: inline-table' element</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#propdef-text-indent">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#indentation-prop">
8 <meta name="flags" content="ahem">
9 <meta name="assert" content="The 'text-indent' property is applied to 'display: inline-table' elements.">
10 <style type="text/css">
11 div
12 {
13 font: 16px/1em Ahem;
14 }
15 #table
16 {
17 display: inline-table;
18 text-indent: 10em;
19 }
20 #row
21 {
22 display: table-row;
23 }
24 #cell
25 {
26 display: table-cell;
27 }
28 #div1
29 {
30 background: blue;
31 height: 1em;
32 margin-left: 10em;
33 width: 5em;
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="row">
41 <div id="cell">XXXXX</div>
42 </div>
43 </div>
44 <div id="div1"></div>
45 </body>
46 </html>