Source code
Revision control
Copy as Markdown
Other Tools
<head>
<title>NEGATED Attribute space-separated value selector without declared namespace</title>
*|p, *|address, *|q, *|r { display : block ; margin-bottom : 1em }
*|address, *|r { background-color : lime ! important }
div.stub *|*:not([|class~="foo"]) { 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">
<p class="bar foo toto">This paragraph should be unstyled.</p>
<address class="bar foofoo toto">This address should have a green background.</address>
<r xmlns="http://www.example.org/b" b:class="bar foo toto">This paragraph should have a green background.</r>
</div>
</body>
</html>