css3-modsel-3.xml (762B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title>Universal selector</title> 4 <style type="text/css"><![CDATA[* { color : lime } 5 ul, p { color : red } 6 *.t1 { color : lime } 7 ]]></style> 8 <link rel="author" title="Daniel Glazman" href="http://glazman.org/"/> 9 <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found --> 10 <meta name="flags" content=" namespace" /> 11 </head> 12 <body> 13 <p> 14 <span class="t1">This paragraph, and all textual contents in the document, 15 should be green.</span> 16 </p> 17 <ul> 18 <li class="t1">This item should be green.</li> 19 </ul> 20 <foo xmlns="http://www.example.org/a">And this element, part of a non-HTML namespace, 21 should be green too</foo> 22 </body> 23 </html>