我很难li
在我的文档中居中元素。
我已经<div align="center">
在元素周围放置了一个包装器(li
但运气不佳。
它似乎只是使每个li
元素的标题居中,而不是整个li
元素块。我想要整个块Priority, Round 1 and Round 2
居中(即在一个 div 的中间)。
到目前为止,这是我的代码:http: //jsfiddle.net/nTcBk/
HTML
<div>
<div align="center">
<ul class="round">
<li class="current-round" style="cursor: default; ">
<div>Priority</div>
<span>Ending 01/11/2012</span></li>
<li style="cursor: default; ">
<div>Round 1</div>
<span>Starting 01/12/2012</span></li>
<li style="cursor: default; ">
<div>Round 2</div>
<span>Starting 01/01/2013</span></li>
</ul>
</div>
</div>
CSS
.round {
list-style: none;
margin: 0;
padding: 0;
width: 100%;
}
.round li {
color: #DDD;
cursor: pointer;
float: left;
font-size: 18px;
padding-right: 20px;
}
.round li span {
font-size: 12px;
display: block;
}
.round .current-round {
color: #2a145d;
cursor: auto;
}
提前致谢