<!DOCTYPE html><html><head>
<title>:last-of-type pseudo-class</title>
<style type="text/css">.red { background-color : red }
address { margin-bottom : 1em ; margin-left : 1em }
address:last-of-type { background-color : lime }
</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>
<div>
<address></address>
<address></address>
<address class="red"></address>
This div contains 3 addresses above this sentence.</div>
</body></html>