I have a div which has background-color: blue;. Now when I hover, it changes to red;
I also have an absolutely positioned element, which is (visually) on top of that div, semantically a sibling.
<div>
<div>My blue div</div>
<div>My absolutely positioned element, which is actually on top of my blue div</div>
</div>
Now when I hover over my absolutely positioned element, my blue div will remain blue, and not take its red hover style, since technically I am not hovering over it directly anymore.
Any way I can prevent this?