我正在Twitter Bootstrap中构建表单,但是将按钮居中于表单输入下方时出现问题。我已经尝试过将center-block
类应用于按钮,但这没有用。我该如何解决?
这是我的代码。
<!-- Button -->
<div class="form-group">
<label class="col-md-4 control-label" for="singlebutton"></label>
<div class="col-md-4">
<button id="singlebutton" name="singlebutton" class="btn btn-primary center-block">
Next Step!
</button>
</div>
</div>
根据Twitter Bootstrap文档:http : //getbootstrap.com/css/#helper-classes-center
该类
center-block
所做的只是告诉元素的auto边距为0,其中auto为左/右边距。但是,除非类text-center或css text-align:center; 是在父对象上设置的,元素不知道要从中进行此自动计算的点,因此不会使自己居中。在这里查看上面的代码示例:https : //jsfiddle.net/Seany84/2j9pxt1z/