修改
我的jsfiddle条目是here : http://jsfiddle.net/ehNrE/3/
下面的所有代码(只有那些必需的代码)都在那里,我更新了@Jasper的请求......因为我不得不削减巨大的代码,所以可能会丢失一些部分
PS :点击jsfiddle中的下拉菜单时,您无法在本地系统中看到红色向下箭头作为其图像,但您只需点击箭头所在的位置即可要看到效果。
原始帖子
以上图片解释了我的问题...我的下拉菜单出现了什么问题?为什么它与我下面的entry
div类重叠....有人可以建议一个补救措施吗? ......我正在使用codes from here来发展这个...我也不知道来自
我的标记HTML(下拉列表的jquery):
<div id="menu">
<ul class="topnav">
<li><a href="#">Live-Radio</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Home</a></li>
<li>
<a href="#">Songs</a>
<ul class="subnav">
<li><a href="#">Sub Nav Link</a></li>
<li><a href="#">Sub Nav Link</a></li>
</ul>
</li>
</ul>
<script type="text/javascript">
$(document).ready(function(){
$("ul.subnav").parent().append("<span></span>"); //Only shows drop down trigger when js is enabled (Adds empty span tag after ul.subnav*)
$("ul.topnav li span").click(function() { //When trigger is clicked...
//Following events are applied to the subnav itself (moving subnav up and down)
$(this).parent().find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click
$(this).parent().hover(function() {
}, function(){
$(this).parent().find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
});
//Following events are applied to the trigger (Hover events for the trigger)
}).hover(function() {
$(this).addClass("subhover"); //On hover over, add class "subhover"
}, function(){ //On Hover Out
$(this).removeClass("subhover"); //On hover out, remove class "subhover"
});
});
</script>
</div>
我的CSS:
#menu{
float:left;
height:71px;
padding-top:35px;
text-align: right;
width: 400px;
}
ul.topnav {
list-style: none;
margin: 0;
font-size: 1.2em;
z-index:50;
}
ul.topnav li {
height:100px;
float: right;
margin: 0;
padding: 0 15px 15px 0;
position: relative; /*--Declare X and Y axis base for sub navigation--*/
}
ul.topnav li a{
padding: 10px 5px;
color: #222;
display: block;
text-decoration: none;
float: left;
}
ul.topnav li a:hover{
font-weight:bold;
}
ul.topnav li span { /*--Drop down trigger styles--*/
width: 17px;
height: 35px;
float: left;
background: url(images/down.png) no-repeat center top;
}
ul.topnav li span.subhover {cursor: pointer;} /*--Hover effect for trigger--*/
ul.topnav li ul.subnav {
list-style: none;
position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
left: 0; top: 35px;
background: #333;
margin: 0; padding: 0;
display: none;
float: left;
width: 170px;
border: 1px solid #111;
}
ul.topnav li ul.subnav li{
margin: 0; padding: 0;
border-top: 1px solid #252525; /*--Create bevel effect--*/
border-bottom: 1px solid #444; /*--Create bevel effect--*/
clear: both;
width: 170px;
}
html ul.topnav li ul.subnav li a {
float: left;
width: 145px;
background: #333 url(dropdown_linkbg.gif) no-repeat 10px center;
padding-left: 20px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
background: #222 url(dropdown_linkbg.gif) no-repeat 10px center;
}
.entry{
position:relative;
margin:0 0 20px 0;
border:2px solid #fff;
background:#eee url(images/entrybg.png) repeat-x;
color:#333;
padding:10px 10px 0 10px;
}
以下<div class="entry"> ... </div>
会创建标题为What's happening at Bedupako.Com
答案 0 :(得分:9)
首先,您的菜单与您的内容区域重叠,因为它不知道谁在流中首先出现,因为您的子菜单是绝对定位的。要解决这个问题,只需在#menu
容器中声明一个位置,然后添加z-index
之类的9999
来将其置于其他所有位置之上。
#menu {
position:relative;
z-index:9999;
}
关于第二个问题,子菜单项继承了主菜单项的高度,即100像素,只需在子菜单height:auto
中声明li
即可解决此问题。
ul.topnav li ul.subnav li {
height: auto;
}
EDIT ::
小提琴
答案 1 :(得分:1)
您的菜单显示在内容背后的原因是因为z-index
中的ul.topnav
无法使用static
定位。要解决此问题,您只需应用relative
定位:
ul.topnav {
position: relative; /* add this */
list-style: none;
margin: 0;
font-size: 1.2em;
z-index:50;
}
子导航中有额外间距的原因是li
中的.subnav
元素从height: 100px
中的CSS样式继承ul.topnav li
。要解决这个问题,您应该从height: 100px
移除ul.topnav li
,然后将其添加到#menu
:
#menu{
height:100px; /* add this */
float:left;
height:71px;
padding-top:35px;
text-align: right;
width: 400px;
}
ul.topnav li {
/* height:100px; remove this */
float: right;
margin: 0;
padding: 0 15px 15px 0;
position: relative; /*--Declare X and Y axis base for sub navigation--*/
}
JSfiddle:http://jsfiddle.net/ehNrE/5/