#navigation_conatiner_7 的背景和边框不可见。我尝试将 overflow:auto 添加到其父级,它只显示滚动条。后来我尝试添加相同的内容,但后来它完全隐藏了。由于我的想法已经用完了,我想也许这里有人可能有答案。
这是代码:http: //jsfiddle.net/Tamaki/my5GV/
HTML:
<div id="navigation">
<div id="holder">
<div id="navigation_category_2">articles</div>
<div id="navigation_category_3">columns</div>
<div id="navigation_category_7">submit
<div id="navigation_container_7">
<div class="navigation_link"><span style="margin-left: 10px;">submit</span></div>
<div class="navigation_link"><span style="margin-left: 10px;">applications</span></div>
<div class="navigation_link"><span style="margin-left: 10px;">points</span></div>
</div>
</div>
</div>
</div>
CSS:
#navigation {
top: 0px !important;
width: 100%;
height: 60px;
background-color: #eee;
border-bottom: solid 3px #dd6a0c;
position: fixed;
}
#holder {
width: 960px;
margin: 0 auto;
height: inherit;
}
/* Navigation
============================*/
#navigation_category_2, #navigation_category_3, #navigation_category_7 {
height: 60px;
float: left;
width: 120px;
text-align: center;
margin: 0 7px 0 8px;
cursor: pointer;
line-height: 60px;
font-family: Impact, Arial, sans-serif;
color: #111;
font-size: 18px;
}
#navigation_category_2:hover, #navigation_category_3:hover, #navigation_category_7:hover {
background-color: #dd6a0c;
color: #eee;
}
#navigation_category_7:hover {
background-color: #eee;
color: #111;
}
#navigation_container_7 {
top: 0;
position: relative;
display: none;
width: 160px;
left: -24px;
border: 3px solid #dd6a0c;
border-top: none;
height: 0px;
background-color: #eee;
}
#navigation_category_7:hover #navigation_container_7 {
display: block;
}
.navigation_link {
top: 0;
width: inherit;
height: 26px;
text-align: left;
font-size: 11px;
font-family: Verdana;
color: #111;
line-height: 26px;
text-transform: capitalize;
font-weight: bold;
}
.navigation_link:hover {
background-color: #dd6a0c;
color: #eee;
}