下面是我的网站导航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;
}
任何人都可以帮我解释原因吗?