#menu ul li ul li:hover{height:40px;}
li ul li{ background:green;height:40px; text-align:center; line-height:40px; border-bottom:white solid 1px; float:left;}
#menu ul li:hover ul{
display:block;
}
</style>
二、老师的定位去掉也正常,
li ul li{ background:green;height:40px; text-align:center; line-height:40px; border-bottom:white solid 1px; float:left;}
#menu ul li:hover ul{
display:block;
}
</style>
二、老师的定位去掉也正常,
2016-12-20
#menu ul li {float:left; width:100px; padding-right:5px; height:40px; text-align:center; line-height:40px; overflow:hidden;}
a{ text-decoration:none; display:block; height:40px;overflow:hidden;}
#menu ul li:hover{height:200px;}
a{ text-decoration:none; display:block; height:40px;overflow:hidden;}
#menu ul li:hover{height:200px;}
2016-12-20
不适用定位 也可以实现 代码如下:
<style type="text/css">
*{margin:0px;padding:0px;}
ul {list-style-type:none; margin:0 auto;height:40px;}
#menu{ margin: 0 auto; background:gray; width:800px ;height:40px; }
<style type="text/css">
*{margin:0px;padding:0px;}
ul {list-style-type:none; margin:0 auto;height:40px;}
#menu{ margin: 0 auto; background:gray; width:800px ;height:40px; }
2016-12-20
最新回答 / 慕移动9181930
网的问题吧,有时候就会这样fwnwqewuisquaanlenisdyzbdzgbirodmrhnniroyyahkifznalygtrfxdyzwubatdnwnnwawipxocjats
2016-12-16
<link rel="stylesheet" href="index.css">
ul li ul li{
float: none;
background-color: #eee;
height: 60px;/*IE7*/
width: 124px;/*IE7*/
margin-bottom:-4px;/*IE7*/
}
ul li ul li{
float: none;
background-color: #eee;
height: 60px;/*IE7*/
width: 124px;/*IE7*/
margin-bottom:-4px;/*IE7*/
}
$('li.mainlevel').hover(function () {
$(this).find('ul').stop().slideToggle('fast'); //you can give it a speed
});
$(this).find('ul').stop().slideToggle('fast'); //you can give it a speed
});
2016-12-12
还是觉得这样更简单
$(function(){
$(".navmenu").hover(function(){
$(this).children("ul").toggle();
})
})
$(function(){
$(".navmenu").hover(function(){
$(this).children("ul").toggle();
})
})
2016-12-12