I've got two Bootstrap 3 columns with some multi-line text in the left hand column and a button in the right-hand column and I want the bottom of the button to appear inline with the bottom of the text.
<div class = "container">
<div class = "row">
<div class = "col-sm-6">
Paul Grenyer</br>
XX XXXXX Road</br>
Norwich</br>
XXX XXX</br>
</br>
XXXXX XXX XXX
</div>
<div class = "col-sm-6 align-items-end">
<button>Metal</button>
</div>
</div>
</div>
In bootstrap 4 it appears this can be done with align-items-end, is there a bootstrap 3 equivalent?