So I'm having a hard time with the following structure:
<div id="1">
<div class="one-child">
<div class="one-childest"></div>
</div>
</div>
<div id="2">
<div class="two-child">
<div class="two-childest></div>
</div>
</div>
When hovering over one-childest
I want to change color of two-childest
but seem to have a hard time doing so. So I guess the main question is, is this possible with pure CSS or do I have to involve jQuery?
This is the CSS I'm trying with currently:
#1.one-child.one-childest:hover ~ #2.two-child.two-childest{
background-color:black;
}