<!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 inheritance (part three)</title>
  <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter"/>
  <style type="text/css">
   div:first-letter { background:red }
   p.one { display:inline-block }
   p.two { display:table-cell }
  </style>
 </head>
 <body>
  <div><p class="one">There should be no red.</p></div>
  <div><p class="two">There should be no red.</p></div>
 </body>
</html>

