I need to CSS select the last word. Tried ::nth-last-word and ::last-word - dosent do anything at all.
.site-title a {
font-size: 30px;
}
.site-title a::last-word {
color: #c73434;
}
<div class="site-title">
<a href="#">first word</a>
</div>