li 在 UL 中居中均匀显示

先设置UL宽高,text-aline=center,设置li为inline-block,widit自行设置为合适的百分比

.nav ul{

width: 200px;
height:100px;
margin: 0 auto;
text-align: center;
}

li{
list-style: none;
display: inline-block;
width: 30%;
/*text-align: center;*/
margin-top: 70px;
}

猜你喜欢

转载自www.cnblogs.com/martray/p/10589086.html
今日推荐