<!DOCTYPE html><html><head>
<title>NEGATED :last-of-type pseudo-class</title>
<style type="text/css">.red { background-color : red }
address { margin-bottom : 1em ; margin-left : 1em }
address:not(:last-of-type) { background-color : lime }
</style>
<link rel="author" title="Daniel Glazman" href="http://glazman.org/">
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors">
<meta name="flags" content="">
</head>
<body>
<div>
<address class="red"></address>
<address class="red"></address>
<address>A third address with normal background</address>
This div should have three addresses above it.</div>
</body></html>