css last class select

by peterjc

HTML

<!DOCTYPE html>
<html>
<head>
<style> 
.a:last-of-type {
  background: #ff0000;
}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p class="a">The first paragraph.</p>
<p class="a">The second paragraph.</p>
<p class="a">The third paragraph.</p>
<p class="a">Last of class a, please select.</p>
<p class="b">The fifth paragraph.</p>

</body>
</html>