Is there a way to left-align text within a Bootstrap button without using custom styles, other than what Bootstrap provides? I have multiple buttons with varying lengths of text, and they all need to be the same width. Currently, I am using the col-xs-11
class to achieve this.
Here is an example of the button code:
<input type="button" value="Applicant/Subsidiary" id="mybutton" name="test" class="primary-btn col-xs-11">
I am working with Bootstrap v3.0.1 and wondering if there is a built-in solution for this alignment issue.