<!DOCTYPE html><html><head>
<title>NEGATED :nth-of-type() pseudo-class</title>
<style type="text/css">.green { background-color : lime ! important }
p:not(:nth-of-type(3)) { background-color : red }
dl > *:not(:nth-of-type(3n+1)) { background-color : red }
</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="">
</head>
<body>
<p class="green"></p>
<address>And this address should be unstyled.</address>
<p class="green"></p>
<p>But this one should be unstyled again.</p>
<dl>
<dt>First definition term</dt>
<dd>First definition</dd>
<dt class="green"></dt>
<dd class="green"></dd>
<dt class="green"></dt>
<dd class="green"></dd>
<dt>Fourth definition term</dt>
<dd>Fourth definition</dd>
<dt class="green"></dt>
<dd class="green"></dd>
<dt class="green"></dt>
<dd class="green"></dd>
</dl>
</body></html>