first-letter-selector-027.xht (702B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: First-Letter: Basic Test</title> 5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 6 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/selectors/first-letter/006.html" type="text/html"/> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter" /> 8 <style type="text/css"> 9 p:first-letter { border: solid; padding: 0.1em; color: lime; background: green; } 10 </style> 11 </head> 12 <body> 13 <p>The first letter of this paragraph should be green.</p> 14 </body> 15 </html>