first-line-selector-003.xht (892B)
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: Table cells usage with :first-line</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-line-pseudo" /> 7 <meta name="assert" content="The first line of a table-cell cannot be the first formatted line of an ancestor element." /> 8 <style type="text/css"> 9 table:first-line 10 { 11 background: red; 12 } 13 </style> 14 </head> 15 <body> 16 <p>Test passes if there is no red visible on the page.</p> 17 <table> 18 <tr> 19 <td>Filler Text</td> 20 </tr> 21 </table> 22 </body> 23 </html>