Using bootstrap, I try to place a button in the center,
I achieve it by finely adjust the grid column by column
<div class="form-group">
<div class="col-sm-offset-3 col-sm-7">
<button type="submit" class="btn btn-success">Sign in</button>
</div>
</div>
I tried text-center
and block-center
, they did not work properly.
How to get it done in a straight forward way?