<!DOCTYPE html><html><head>
<title>NEGATED :target pseudo-class</title>
<style type="text/css">p { background-color: navy; color: white; }
p:not(:target) { background-color: white; color: black; }</style>
<link rel="author" title="Daniel Glazman" href="http://glazman.org/">
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors">
<meta name="flags" content=" interact">
</head>
<body>
<p id="first"></p>
<p id="second"></p>
<p id="third"></p>
</body></html>