我已经为你的导航做了两个解决方案第一个是我刚刚定义了min-height:50px:到你的类div.nav ul li a
正如下面提到的更新的CSS
div.nav ul li a {
border-right: 1px solid white;
color: white;
display: block;
min-height: 50px;
padding: 5px 10px 3px;
text-decoration: none;
width: 167px;
}
一旦你用这个类更新你的css,你会得到想要的结果,我认为你正在寻找这个.....
第二种方法
我在不使用Width 和 Height的情况下玩过填充,因此您也可以看到替代方法...检查第二种方法CSS
div.nav {
background: none repeat scroll 0 0 #89BFE4;
clear: both;
color: #FFFFFF;
font-size: 18px;
position: relative;
text-align: center;
text-transform: uppercase;
z-index: 199;
}
div.nav ul {
list-style: none outside none;
margin: 0;
overflow: hidden;
padding: 0;
text-align: center;
}
div.nav ul li:hover {
background: none repeat scroll 0 0 #FF9900;
}
div.nav ul li {
border-right: 1px solid white;
float: left;
padding: 10px;
}
div.nav ul li a {
color: white;
display: block;
text-decoration: none;
}
div.nav ul li:last-child a {
border-right: medium none;
}
div.nav ul li a:hover, div.nav ul li:hover > a {
color: white;
}
.current-menu-item {
background: none repeat scroll 0 0 #FF9900;
}
div.nav ul ul {
background: none repeat scroll 0 0 #FF9900;
display: none;
left: 93px;
position: absolute;
top: 42px;
width: 250px;
z-index: 200;
}
div.nav ul ul li {
clear: left;
position: relative;
text-align: left;
}
div.nav ul ul li:hover, div.nav ul ul li:hover a {
color: #FF9900;
background: none repeat scroll 0 0 white;
}
div.nav ul ul li a, div.nav ul li.active li a {
color: white;
width: 250px;
}
div.nav ul ul li a:hover, div.nav ul li.active ul li a:hover, div.nav ul li:hover ul li a:hover, div.nav ul li.hover ul li a:hover {
}
div.nav ul > li:hover > ul, div.nav ul > li.hover > ul {
display: block;
}
我希望这对您也有帮助,我试图为您提供最接近您问题的解决方案....