Bootstrap - Vertically Align Button With Well
I have a well and I am trying to vertically align a button on the right of it. I guess I could just use traditional CSS, but I'd rather not run the risk of breaking the bootstrap.
Solution 1:
you have to use col-xs class to make it possible have a look on js fillde i have created for you : `https://jsfiddle.net/2w4Lc5L7/`
Solution 2:
Add the pull-right class to the div instead of the button.
<div class="col-md-2 vcenter pull-right">
<button type="button" class="btn btn-primary btn- lg">Download</button>
</div>
Post a Comment for "Bootstrap - Vertically Align Button With Well"