当前位置:Gxlcms > html代码 > ul中的li如何居中均匀分布呢_html/css_WEB-ITnose

ul中的li如何居中均匀分布呢_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:365人阅读

其中ul设了固定宽了,li的宽是不定的,且li设成了inline-block了,如图,现在想让li们在ul中居中水平均匀分布,不知如何设置呢

回复讨论(解决方案)


<style type="text/css">
ul{margin:0 auto;padding:0;
width:400px;background:#F00;
text-align:center;
}
li{
list-style:none;
display:inline-block;
margin:0 10px;width:100px;
background:#0F0;}</style><ul>	
<li>1</li><li>2</li><li>3</li></ul>

纯css只有给li定宽度才行。
不然就只有用js去算了。

人气教程排行