Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<title>CSS: 1 simple test of namespaces (attributes)</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
<link rel="match" href="selectors-namespace-001-ref.xml"/>
<style type="text/css">
@namespace html url(http://www.w3.org/1999/xhtml);
@namespace test url(http://www.example.org/);
html|body { color: red; }
[test] { color: green; }
</style>
</head>
<body>
<test test="test" xmlns="http://www.example.org/">
This text should be green.
</test>
</body>
</html>