<!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: ::first-letter and 'text-indent' on the element (part two)</title>
  <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter"/>
  <style type="text/css">
   body { margin:1em 0 0 4em }
   p { text-indent: -1em }
   p.test:first-letter, span { float:left }
  </style>
 </head>
 <body>
  <div>The following two lines should be identical:</div>
  <p class="test">TEST</p>
  <p><span>T</span>EST</p>
 </body>
</html>

