If I've got this:
<div class="parent">
<a href="#" id="trigger">Trigger</a>
</div>
<div class="sibling">
<div id="change">Hello</div>
</div>
Is there a selector to grab #change when #trigger is hovered upon?
Like upon hover of #trigger, change the background of .sibling's #change element.
I'm looking for a pure CSS solution without javascript.