Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/selectors/old-tests/css3-modsel-48.xml - WPT Dashboard Interop Dashboard
<head>
<title>NEGATED universal selector</title>
div.stub > *|* { background-color : lime ; display : block ;
margin-bottom : 1em }
div.stub > *|*:not(*) { background-color : red }
/* yes, the rule just above selects nothing... That's the point */
]]></style>
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
<link rel="match" href="reference/this-address-p-p-p-lime-background.xht"/>
<meta name="flags" content=" namespace" />
</head>
<body>
<div class="stub">
<address>This address should have a green background</address>
<t xmlns="">This paragraph should have a green background</t>
</div>
</body>
</html>