我的笔:http ://codepen.io/helloworld/pen/pCdBe
我已经将 ul-tag 中的 3 个 li 元素与考虑到父 ul 高度的百分比值垂直对齐。
我还希望像 1 或 2 这样的 li 元素文本垂直对齐,并且笔中仍然存在错误。
为什么数字左边有这样的差距?
<ul id="navigationWheeler" >
<li>1</li>
<li style="background-color: #0094ff;">2</li>
<li>3</li>
</ul>
#navigationWheeler {
height: 300px;
width:30px;
text-align: center;
vertical-align: middle;
border: black solid 1px;
background-color: lightgray;
}
li{
list-style:none;
height:33%;
vertical-align: middle;
}