按钮不居中,仅在Safari浏览器中对齐。
JSFIddle
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中,它运行良好。
如果您没有为btn:设置宽度
- 父级-
text-align: center
- 按钮子项-使用
display:inline-block
而不是display: block
.wrap {
text-align: center;
}
.center-block {
display: inline-block;
}
<div class="wrap">
<input value="Button" class="center-block" type="submit" />
</div>