How do I align images to the bottom of a div (in bootstrap)?

iamvoodoo

New Member
I would like to be able to align different sized images to the bottom of a div. I have the following markup: \[code\]<div class="container"> <div class="container"> <div class="footer-images"> <a href="http://stackoverflow.com/questions/15568829/link1"><img src="http://stackoverflow.com/questions/15568829/img1"></a> <a href="http://stackoverflow.com/questions/15568829/link2"><img src="http://stackoverflow.com/questions/15568829/img2"></a> <a href="http://stackoverflow.com/questions/15568829/link3"><img src="http://stackoverflow.com/questions/15568829/img3"></a> </div> </div> <div class="container"> <div class="copyright"> <p>? Some Company YYYY</p> </div> </div></div>\[/code\]I can't figure out how to have all the images aligned to the bottom of the footer-images div. Any help would be greatly appreciated.
 
Back
Top