那个虫子?导航栏左侧不能弄明白

时间:2014-03-01 16:36:48

标签: html css navbar

使用导航栏和一些链接在一个非常简单的页面上工作。一切正常,出现正确,然后我对html进行了更改,导航栏链接向左移动,而在它们居中之前。我确定我没有改变任何CSS和我在最后一天多次扫描它。我想开始rom scratch但是听说stackoverflow并认为id试试我的运气。

继承人页面

http://coleio.com/html/poc.html

谢谢:)

2 个答案:

答案 0 :(得分:0)

.nav {text-align: center;}添加到CSS

答案 1 :(得分:0)

将text-align:center和width:100%添加到ul:

的样式中
ul {
  display: inline-block;
  margin: 0 auto;
  list-style-type: none;
  text-decoration: none;
  text-align: center;
  width: 100%;
}