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?
July 21, 2014 at 7:47 am
#176007
Participant
Screw jQuery, just use
#container:hover ~ .trans-1 {
width: 1000px;
}
Adding a class on hover would be jQuery’s job though.