Safari中的按钮未居中对齐



按钮不居中,仅在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:设置宽度

  1. 父级-text-align: center
  2. 按钮子项-使用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>

相关内容

  • 没有找到相关文章

最新更新