Hover over the tip of light saber. I would like to trigger that action when hovering over the entire photo of Luke and Leah. Not just the little sword tip.
Is it possible to trigger one div when you are hovering over a different div using CSS?
with this, the first a after the one hovered would change to red.
You could put a div:hover+div and make the second div position:absolute. The only important thing is that the element you want to change must immediately follow the element that is hovered.
Hover over the tip of light saber. I would like to trigger that action when hovering over the entire photo of Luke and Leah. Not just the little sword tip.
Is it possible to trigger one div when you are hovering over a different div using CSS?
Thanks again!
I think what you want to do is
with this, the first a after the one hovered would change to red.
You could put a div:hover+div and make the second div position:absolute. The only important thing is that the element you want to change must immediately follow the element that is hovered.