子菜单无法正常工作

时间:2013-03-06 11:44:29

标签: html css

我无法将子菜单放在tab2上父级的顶部。我的意思是当我在tab2下方悬停时,子菜单会出现。我用自己制作的按钮(图片)。有人可以在演示中整理css代码吗?非常感谢:)这是演示http://jsfiddle.net/3Lhe7/

@charset "utf-8";
/* CSS Document */

body {
max-width: 1000px;
text-align: right;
/*text-align: center;*/
}

.bg {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: -5000;
}

#navigation {
clear: both;
width: 60%; 
margin: 0 auto; 
border: 0px;
text-align: left;
position: absolute;
top:  65%;
left: 20%;  
height: 90px;
min-width:830px;
max-width:1000px;
}

#navigation ul {
display: inline-block;
margin: 0 auto;
}

#navigation ul li {
display: inline;
position: relative;
float: left;
list-style-type: none;
height: 45px;
}

#navigation li ul {
margin: 0px;
padding: 0px;
display: none;
position: absolute;
}

#navigation ul li a {
list-style: none;
display: block;
width: 150px;
height: 90px;
padding: 0px;
}

#navigation ul li ul {
display: none;  
}

#navigation ul li:hover ul {
display: block;
bottom: 100%;
}

#submenu {  
list-style: none;
display: block;
width: 150px;
height: 45px;
padding: 0px;
margin: 0px;
}

1 个答案:

答案 0 :(得分:0)

我不知道你将#submenu的高度设为45px背后的原因,但将此(height属性)更改为0似乎可以解决问题。

#submenu {  
    list-style: none;
    display: block;
    width: 150px;
    height: 0;
    padding: 0px;
    margin: 0px;
}

http://jsfiddle.net/3Lhe7/4/