html - Aligning images in bootstrap colums -


im using bootstrap , i'm having problem css. im trying align columns images inside each column have same bottom line, not top. have tried can think of nothing seems work. can me align images correctly? bottom of images match?

<div class="container marketing">   <!-- sponsors logos-->   <div class="row featurette lastnew">     <div class="col-lg-4">       <img class="img-responsive midjasponsora" alt="1496x613" src="images/logos/platinum/image1.png">     </div>     <div class="col-lg-4">       <img class="img-responsive" alt="180x52" src="images/logos/platinum/image2.png">     </div>     <div class="col-lg-4">       <img class="img-responsive"  alt="283x66" src="images/logos/platinum/image3.png">     </div>   </div> </div> 

i found answer. put class on columns , it.

.vcenter {     display: inline-block;     vertical-align: bottom;     float: none; } 

Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -