CSS Question:
<ul>
<li>LINK 1</li>
<li>LINK 2</li>
<li>LINK 3
<ul>
<li>link 3.1</li>
<li>link 3.2</li>
</ul>
</li>
</ul>
Is there a way in CSS to change the text color of LINK 3 (the parent link) when either link 3.1 or 3.2 is hovered over?
I understand how to style individual elements, but I'm not sure how to target the parent li tag specifically for this effect.