按钮未在Safari浏览器中居中对齐。
HTML
<div class="" style=" width: 100%; ">
<input value="Button" class="center-block" type="submit" style=""/>
</div>
CSS
.center-block {
display: block;
margin-right: auto;
margin-left: auto;
}
以上问题刚出现在Safari中。在Chrome和Firefox中,它可以正常工作。
答案 0 :(得分:9)
如果您没有为btn设置宽度:
text-align: center
display:inline-block
代替display: block
.wrap {
text-align: center;
}
.center-block {
display: inline-block;
}
&#13;
<div class="wrap">
<input value="Button" class="center-block" type="submit" />
</div>
&#13;