Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS is hover possible with different div's without parent? Reply To: is hover possible with different div's without parent?

#251256
Shikkediel
Participant

I suppose you’re looking for the adjacent sibling selector:

.block:hover + .block1{
  background: green;
}