Last-child doesn't fire. Works on all links instead of the last one. I suspect that I have incorrectly styled the css, but I don’t understand where the error is
.tt-breadcrumb ul li a:last-child {
color: #dd3d53; }
<div class="tt-breadcrumb">
<ul>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>