<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS 2.1 Test Suite: line-height</title>
  <style type="text/css"><![CDATA[
   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; }
   p { margin: 0; }
   .one {line-height: 0.25in;}
   .two {line-height: 0.635cm;}
   .three {line-height: 6.35mm;}
   .four {line-height: 18pt;}
   .five {line-height: 1.5pc;}
   .six {line-height: 2em;}
  ]]></style>
  <link title="10.8.1 Leading and half-leading" href="http://www.w3.org/TR/CSS21/visudet.html#q26" rel="help"/>
 </head>
 <body>
  <p>There should be a big pattern of green and lime dots below, with no red present.</p>
  <div>
   <p class="one"> X X X X </p>
   <p class="two"> X X X X </p>
   <p class="three"> X X X X </p>
   <p class="four"> X X X X </p>
   <p class="five"> X X X X </p>
   <p class="six"> X X X X </p>
  </div>
 </body>
</html>