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: line-height</title>
5 <meta name="flags" content="ahem image">
6 <link rel="help" href="http://www.w3.org/TR/REC-CSS1#line-height">
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 div { font: 12px Ahem; background: red url(support/pattern-gg-gr.png); color: lime; width: 4em; padding: 0.5em 0 0.5em 1em; border: solid black; margin: 0.5em; }
11 p { margin: 0; }
12 .one {line-height: 0.25in;}
13 .two {line-height: 0.635cm;}
14 .three {line-height: 6.35mm;}
15 .four {line-height: 18pt;}
16 .five {line-height: 1.5pc;}
17 .six {line-height: 2em;}
18 </style>
19 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading" title="10.8.1 Leading and half-leading">
20 </head>
21 <body>
22 <p>There should be a big pattern of green and lime dots below, with no red present.</p>
23 <div>
24 <p class="one"> X X X X </p>
25 <p class="two"> X X X X </p>
26 <p class="three"> X X X X </p>
27 <p class="four"> X X X X </p>
28 <p class="five"> X X X X </p>
29 <p class="six"> X X X X </p>
30 </div>
31 </body>
32 </html>