使用 CSS bellow,我可以将每个 li 居中在 ul 中。问题是我看不到 li 元素。他们在 ul 之下。我知道它们是居中的,因为我在 Chrome 开发者工具中看到了它。
nav ul {
-webkit-box-pack: center;
display: -webkit-box;
margin: 0 auto;
overflow: hidden;
}
nav ul li {
float: left;
list-style-type: none;
padding: 25px;
}
z-index 根本不起作用...
更新:我已经删除了 float: left 并且它起作用了!
谢谢你。