Source code
Revision control
Copy as Markdown
Other Tools
<head>
<title>NEGATED Attribute value selector with universal namespace</title>
*|p, *|q, *|r, *|s { display : block ; margin-bottom : 1em }
*|q { background-color : lime ! important }
div.stub *|*:not([*|title="si on chantait"]) { background-color : red }
]]></style>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
<meta name="flags" content=" namespace" />
</head>
<div class="stub">
<q xmlns="http://www.example.org/a" a:foo="si on chantait">This paragraph should have a green background.</q>
<q xmlns="http://www.example.org/a" a:title="si nous chantions">This paragraph should have a green background.</q>
</div>
</body>
</html>