Home › Forums › CSS › Hover state, and effecting seperate images. Is is possible? › Re: Hover state, and effecting seperate images. Is is possible?
July 11, 2012 at 1:52 am
#105862
Participant
You can use the siblings selectors:
div:hover + button {color:red;}
div:hover ~ button {color:red;}