【发布时间】:2014-05-24 21:55:44
【问题描述】:
我正在制作一个网页,只是为了好玩,但问题在于导航栏。它要么越过段落文本,要么在其下方。此外,导航链接(主页、关于、资源和联系人)隐藏在导航栏下方。下面是一段代码:
#header {
width: 100%;
height: 100px;
position: fixed;
top: 0px;
left: 0px;
box-shadow: 0px 1px 2px #ccc;
background-color: #f9f9f9;
overflow: hidden;
display: block;
}
#header h1 {
font-family: Helvetica, Arial, sans-serif;
font-weight: 100;
margin-left: 3em;
color: #50E3C2;
font-size: 36px;
}
#header ul {
float: right;
margin-top: 0 auto;
margin-right: 10px;
}
#header ul li {
display: inline;
list-style-type: none;
clear: both;
}
#header li a {
text-decoration: none;
font-family: Helvetica, Arial, sans-serif;
font-weight: 100;
color: #ccc;
padding-right: 15px;
float: left;
}
这是小提琴:
谢谢!
【问题讨论】: