我有这个菜单栏:http://jsfiddle.net/PtQAP/ 我需要将它放在底部,下拉菜单更改为下拉菜单。 我该怎么做?
的CSS:
ul, li, a {
margin: 0;
padding: 0;
}
li {
list-style: none;
}
a {
text-decoration: none;
color: #000000;
}
ul > li {
float: left;
}
ul > li a {
color: #fff;
font-weight: bold;
line-height: 40px;
height:40px;
display:block;
padding:0px 10px;
}
ul li a:hover {
background: #666666;
}
ul li ul {
display: none;
position: absolute;
background: #333333;
}
ul li ul li {
float: none;
line-height: 40px;
height: 40px;
}
感谢您的回答。
答案 0 :(得分:3)
为条形图position
fixed
,并将其bottom
设置为0px
,然后将菜单设置为bottom
的高度为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;
}
ul li ul {
display: none;
position: absolute;
background: #333333;
bottom:40px;
}
{{1}}