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;
}
前もって感謝します