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</title>
5 <meta name="flags" content="ahem">
6 <link rel="help" href="http://www.w3.org/TR/REC-CSS1#font-size">
7 <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html">
8 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
9 <style type="text/css">
10 .ahem { font: 1em/1 Ahem; color: navy; }
11 .f {font-size: 2em;}
12 .g {font-size: 2.5ex;}
13 .i {font-size: 200%;}
14 </style>
15 <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-size-props" title="15.7 Font size: the 'font-size' property">
16 </head>
17 <body>
18 <p>There should be a solid single uninterrupted smooth column of blue below.</p>
19 <div class="ahem">
20 <div class="f"> x </div>
21 <div class="g"> x </div>
22 <div class="i"> x </div>
23 </div>
24 </body>
25 </html>