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: Font-size and 'display: table' elements</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-size">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-size-props">
8 <meta name="flags" content="ahem">
9 <meta name="assert" content="The 'font-size' property applies to 'display: table' elements.">
10 <style type="text/css">
11 #div1
12 {
13 background: orange;
14 height: 1in;
15 width: 1in;
16 }
17 div
18 {
19 font-family: Ahem;
20 line-height: 1em;
21 }
22 #table
23 {
24 display: table;
25 font-size: 1in;
26 }
27 #row
28 {
29 display: table-row;
30 }
31 #cell
32 {
33 display: table-cell;
34 }
35 </style>
36 </head>
37 <body>
38 <p>Test passes if the boxes below are the same size.</p>
39 <div id="div1"></div>
40 <div id="table">
41 <div id="row">
42 <div id="cell">X</div>
43 </div>
44 </div>
45 </body>
46 </html>