How do you change the style of element B when you move the mouse over element A if element A is in the DOM below element B?
In example:
<div id="B">Text</div>
<button id="A">Btn</button>
Below not working:
#A:hover + #B {color: red;}
#A:hover ~ #B {color: red;}
#A:hover #B {color: red;}