Basically I have a list of items and when I hover over the last one, I want all others to change their background-color as well. So far, I tried few workarounds but without success.
<ul class ='profile'>
<li> item 1 </li>
<li> item 2 </li>
<li> item 3 </li>
</ul>
ul.profile > li:nth-child(3):hover {
background-color: red;
}