Home › Forums › CSS › JQuery slide animation reveal div height issue › Reply To: JQuery slide animation reveal div height issue
September 30, 2014 at 10:19 am
#185100
Participant
One way is to give the parent li position: relative
and the ul position: absolute
li {
position: relative;
}
li ul {
position: absolute;
z-index: 1; // or higher if needed
}
play with the top, right, bottom and or left properties for the li ul
to move it into place.