Forums

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

Home Forums CSS [Solved] DIV that triggers a CSS Transition on another DIV? Reply To: [Solved] DIV that triggers a CSS Transition on another DIV?

#176007
r00t
Participant

Screw jQuery, just use

#container:hover ~ .trans-1 {
  width: 1000px;
}

Adding a class on hover would be jQuery’s job though.