first-letter-selector-009.xht (1114B)
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 and valid properties</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter" /> 7 <meta name="assert" content="The color, font-size, text-decoration, text-transform, background and border properties apply to :first-letter." /> 8 <style type="text/css"> 9 div p:first-letter, span 10 { 11 border: 3px solid black; 12 color: silver; 13 font-size: 36px; 14 text-decoration: underline; 15 text-transform: lowercase; 16 } 17 </style> 18 </head> 19 <body> 20 <p>Test passes if the letters below have the same background, border, underline, are the same size, and are in lowercase.</p> 21 <div> 22 <span>T</span> 23 <p>T</p> 24 </div> 25 </body> 26 </html>