我似乎无法弄清楚这一点。我试过text-align:center; ,显示:内联块以及更多,但我无法弄清楚如何将我的导航集中在#menu-bottom-nav中。
CSS
#menu-bottom-nav { width: 600px; height: 70px; margin: 0px auto;}
#menu-bottom-nav li { list-style-type: none; float: left; margin-right: 20px;}
感谢任何帮助。
答案 0 :(得分:1)
试试这个:
<!DOCTYPE>
<html>
<head>
<title>Test</title>
<style type="text/css">
#menu-bottom-nav {
margin: 0;
padding: 0;
width: 600px;
text-align: center;
border: 1px solid #000;
}
#menu-bottom-nav li {
list-style-type: none;
margin-right: 20px;
border: 1px solid #ff0000;
display: inline-block;
*display: inline;
zoom: 1;
}
</style>
</head>
<body>
<ul id="menu-bottom-nav">
<li>Test</li>
<li>Test2</li>
<li>Test3</li>
</ul>
</body>
</html>