How To Change Drop-down Menu To Drop-up Menu
I have this menu bar: http://jsfiddle.net/PtQAP/ and I need to put it to the bottom and the drop-down menu change to drop-up menu. How would I do that? css: ul, li, a { margin
Solution 1:
give the bar a position
of fixed
, and set its bottom
to 0px
, then set your menu to have a bottom
of the height of your bar, in this case 40px
div {
background: #999999;
height: 40px;
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
color: #000000;
margin: -8px;
width:100%;
position:fixed;
bottom:0px;
left:0px;
}
ulliul {
display: none;
position: absolute;
background: #333333;
bottom:40px;
}
Post a Comment for "How To Change Drop-down Menu To Drop-up Menu"