I need to color ONLY the last li with the class default using only CSS. Editing the HTML is not an option. IE9+ is fine. How do I color only the last link? This is just an example and the menu is dynamic so using last child or specifying the exact last link is not an option. I have a nav menu like this:
<ul>
<li class="default">
<a href="#">About Us</a>
<ul>
<li class="default">
<a href="#">Where we live</a>
<ul>
<li class="default">
<a href="#">Make this link red only</a>
</li>
<li>
<a href="#">Directions</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>