我有一个margin:0 auto
包含一些列表项的简单菜单(以 为中心)。现在,当我添加其他列表项时,我试图将菜单保持在相同的居中位置。这是它的小提琴演奏
ul{
list-style-type: none;
background: red;
margin:0 auto;
width: 56%;
max-width:600px
}
ul li{
display: inline-block;
width: 100px;
background-color: #000;
color: #fff;
}
我想要一个额外li
的 's 来ul
包装它并且仍然居中。
我不想使用 flexbox,因为 IE 不支持它:D
The problem is solved. Giving the ul {display:table} Thank you all,especially Coop !