You can use align-items-end from the new Bootstrap 4 flexbox utilities…
<div class="container">
<hr>
<div class="row align-items-end">
<div class="col-md-6">
© BusinessName 2017.
</div>
<div class="col-md-3">
<a href="https://stackoverflow.com/blog"> Blog </a>
<br>
<a href="https://stackoverflow.com/blog"> FAQ </a>
<br>
<a href="https://stackoverflow.com/blog"> About </a>
</div>
<div class="col-md-3">
<strong>Contact</strong>
<br> contact@businessname.com
<br> more info bla bla
<br> more more more info
</div>
</div>
</div>
http://codeply.com/go/GXTF43toS9
Also, auto margins work inside flexbox. There you could use mt-auto (margin-top:auto) to “push” the col-* to the bottom.