<!DOCTYPE html>
<html
xmlns="http://www.w3.org/1999/xhtml" xmlns:ns1="mynamespace" xmlns:ns2="yournamespace"
<body>
<CustomElement>Hello</CustomElement><!-- Custom element in the XHTML namespace -->
<ns1:CustomElement>Hello</ns1:CustomElement>
<ns2:CustomElement>Hello</ns2:CustomElement>
<style type="text/css">
@namespace ns1 "mynamespace"; @namespace ns2 "yournamespace"; CustomElement { color:green; } ns1|CustomElement { color:red; } ns2|CustomElement { color:blue; }
</body>
</html>
<!DOCTYPE html>
<html
><body>
<CustomElement>Hello</CustomElement><!-- Custom element in the XHTML namespace -->
<ns1:CustomElement>Hello</ns1:CustomElement>
<ns2:CustomElement>Hello</ns2:CustomElement>
<style type="text/css">
</style></body>
</html>