css3-modsel-15.xml (1047B)
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>ID selectors</title> 5 <style type="text/css"><![CDATA[li { background-color : red } 6 #t1 { background-color : lime } 7 li#t2 { background-color : lime } 8 li#t3 { background-color : lime } 9 #t4 { background-color : red }]]></style> 10 <link rel="author" title="Daniel Glazman" href="http://glazman.org/"/> 11 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 12 <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found --> 13 </head> 14 <body> 15 <ul> 16 <li id="t1">This list item should have a green background. because its ID is "t1"</li> 17 <li id="t2">This list item should have a green background. because its ID is "t2"</li> 18 <li id="t3"><span id="t44">This list item should have a green background. because the inner SPAN does not match "#t4"</span></li> 19 </ul> 20 </body> 21 </html>