i have a div (div_1) which when hovered over has it's background image and size replaced by css hover state.
the problem is that the positioning of a div (div_2) 'below' this one is then effected when hovering over div_1 because its position is relative.
before i change div_2's position to absolute in order to prevent this from happening, i was wondering if there was any way to prevent div_1's hover state effecting div_2 without resorting to changing div_2's position to absolute?
thank you.