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: block' 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: block' elements.">
10 <style type="text/css">
11 #div1
12 {
13 background: orange;
14 height: 1in;
15 width: 1in;
16 }
17 span
18 {
19 display: block;
20 font-family: Ahem;
21 font-size: 1in;
22 }
23 </style>
24 </head>
25 <body>
26 <p>Test passes if the boxes below are the same size.</p>
27 <div id="div1"></div>
28 <div>
29 <span>X</span>
30 </div>
31 </body>
32 </html>