After spending a considerable amount of time trying to center two buttons in Bootstrap, I came across the "text-center" class offered by Bootstrap. However, no matter where I include this class, it doesn't seem to have any effect on the alignment of the buttons.
<div class="form-group">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-default">Submit</button>
<button type="reset" class="btn btn-default">Reset</button>
</div>
</div>
The code is part of a form nested within a well element. If you require additional information, please feel free to reach out. Thank you!