14
如何在Twitter Bootstrap 3中将按钮居中?
我正在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>