我有一个下拉菜单,当页面滚动到最顶部时看起来很棒,但是当我向下滚动时,第二个<li>
父级的下拉菜单向上滚动页面而不是坚持使用父元素
已解决:第二个下拉菜单不在父标题div中。
顶部链接CREATE工作正常,但链接MANAGE是问题的<li>
父级。
以下是JS的链接:http://www.brandonrray.com/Heriyah/admin/system/js/chrome.js
这是CSS:
ul {
padding: 0;
margin: 0;
}
ul li {
padding: 0;
margin: 0;
}
.chromestyle{
width: 99%;
font-weight: bold;
cursor:pointer;
}
.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.chromestyle ul{
width: 100%;
margin: 0;
text-align: right;
}
.chromestyle ul li{
display: inline;
}
.chromestyle ul li a{
color: #494949;
padding-left:15px;
padding-right:15px;
padding-top:20px;
padding-bottom:20px;
margin: 0;
text-decoration: none;
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
color:#FFFFFF;
}
.chromestyle ul li a:hover, .chromestyle ul li a.selected{
background-color:#0abbe1;
}
/* ######### Style for Drop Down Menu ######### */
.dropmenudiv{
cursor:pointer;
position:absolute;
top: 0;
border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 12px Verdana;
line-height:24px;
z-index:100;
background-color: white;
width: 200px;
visibility: hidden;
}
.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
font-weight: bold;
color: black;
padding-left:15px;
}
* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}
.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #0abbe1; color:#FFFFFF
}
答案 0 :(得分:2)
为什么dropmenu2与dropmenu1在同一个父级下?只有dropmenu1是heriyah_header div的孩子。
答案 1 :(得分:2)
如果仔细查看html来源,您会发现dropmenu2
位置错误。
这是你的代码
<div>
...
<div id="dropmenu1">...</div>
</div>
<div id="dropmenu2">...</div>
Dropmenu 2应与dropmenu1
在同一个地方<div>
...
<div id="dropmenu1">...</div>
<div id="dropmenu2">...</div>
</div>