下面是我的网站导航 div 的示例,当我减小窗口大小时,其他链接在下一行而不是固定到他们的位置。这里是 cose 和 css。
<html>
<head>
<title>test page</title>
<link rel="stylesheet" type="text/css" href="test.css">
</head>
<body>
<div id=navigation>
<ul id="navigation-bar">
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="popup.htm">Images</a></li>
<li><a href="softwares.html">Softwares</a></li>
<li><a href="contact.html">Contact</a></li>
<br><br>
</ul>
</div>
</body>
</html>
这是CSS
div#navigation {
width:100%;
background-color:#000;
border-top:2px solid #5d6869;
border-bottom:2px solid #5d6869;
}
#navigation-bar {
list-style: none;
margin: 0px;
}
#navigation-bar li {
display: inline;
float: left;
}
#navigation-bar li a {
padding: 0em 1em 0.08em 1em;
text-decoration: none;
color:#fff;
font-size:1.8em;
}
#navigation-bar li a:hover {
text-decoration: none;
color:#fff;
background:#5d6869;
}
谁能帮我是什么原因?