Home › Forums › CSS › is hover possible with different div's without parent? › Reply To: is hover possible with different div's without parent?
February 8, 2017 at 9:23 am
#251256
Participant
I suppose you’re looking for the adjacent sibling selector:
.block:hover + .block1{
background: green;
}