我一直在自学 CSS,并决定尝试用我目前所掌握的知识制作一个网站。所以我决定做一个固定的导航栏,跟随网络浏览器的位置,我遇到了一个问题。无论出于何种原因,当我更改浏览器窗口大小时,我添加的链接之一不会停留在导航栏中。有人可以看看我的代码吗?请忽略草率,因为我只是第一次尝试。
这是我的 HTML。“secondnavlinks” div id 不会留在导航栏中:
<div id="nav">
<div id="secondnavlinks">
<ul>
<li><a href="#">Ambient Bookmarklet</a></li>
</ul>
</div>
<div id="class1">
<ul>
<li><a href="#">Saved</a></li>
<li><a href="#">Folders</a></li>
</ul>
</div>
<div id="header">
<img src="ambientfollowhead.gif" alt="ambientfollow" width="160" height="35" />
</div>
</div>
这是CSS:
#nav {
position: fixed;
border: 1px solid #DDDDDD;
top:-1px;
left:109px;
width:85%;
height: 46px;
background-color: white;
z-index: !important 99;
}
(跳过“class1”div)
#secondnavlinks ul {
position: absolute;
display: inline;
list-style-type: none;
}
#secondnavlinks ul li {
display: inline;
text-align: center;
float: left;
font-family: klavika-light;
list-style-type: none;
position: absolute;
left: 950px;
white-space: nowrap;
}
#secondnavlinks ul li > a {
text-decoration: none;
color: inherit;
}