css3-modsel-171.xml (584B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title>Classes: XHTML global class attribute</title> 4 <style type="text/css"><![CDATA[ 5 p { color: green; } 6 .fail { color: red; } 7 ]]></style> 8 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 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 xmlns:xhtml="http://www.w3.org/1999/xhtml"> 14 <span xhtml:class="fail">This should be green.</span> 15 </p> 16 </body> 17 </html>