我得到了一个我以前从未遇到过的奇怪的css错误。我使用内联显示的列表元素中的图像列表。在Chrome中一切正常,但在使用Mozilla浏览时,最后一个li元素出现在第二行。试图改变一些值,但没有结果!有人遇到同样的问题并解决了吗?
http://i.stack.imgur.com/0N4NW.jpg
CSS
#std-signs ul {
width: 736px;
min-width: 736px;
height: 52px;
margin: auto;
display: block;
}
#std-signs ul li {
display: inline-block;
width: 52px;
height: 52px;
margin-right: 1.5em;
}
#std-signs ul li:last-child {
margin-right: 0 !important;
}
答案 0 :(得分:0)
您可以使用display: table-cell;
代替display: inline-block;
#std-signs ul li {
display: table-cell;
width: 52px;
height: 52px;
margin-right: 1.5em;
}
并且有正确的保证金
#std-signs ul {
width: 736px;
min-width: 736px;
height: 52px;
margin: auto;
display: block;
border-spacing: 1.5em;
}