Skip to content Skip to sidebar Skip to footer

Making Dropdown Menu 'dropup'

I am trying to implement a drop up menu. As a starting point I am using an existing drop down menu built using HTML/CSS/jQuery based on CSS trick's Simple jQuery Dropdowns. (As I c

Solution 1:

Try changing this:

ul.dropdownul {
    bottom: 100%;
}

Updted jsfiddle

Solution 2:

Instead of top, use bottom: 100%;:

ul.dropdownul {
    position: absolute;
    bottom: 100%;
}

Solution 3:

Post a Comment for "Making Dropdown Menu 'dropup'"