I have three different size responsive images in two columns and I want an image in the first column to be the same height as two images in the second column including margin-bottom 25 pixels. I am using Bootstrap (3.3.5).
.portfolio-item {
margin-bottom: 25px;
}
<div class="row">
<div class="col-xs-5">
<img class="portfolio-item img-responsive" src="http://res.cloudinary.com/dsie3eeqb/image/upload/v1443796067/mycab1-lg_qx4vue.png">
</div>
<div class="col-xs-7">
<img class="portfolio-item img-responsive" src="http://res.cloudinary.com/dsie3eeqb/image/upload/v1443796064/mycab3-lg_ubywxj.png">
<img class="portfolio-item img-responsive" src="http://res.cloudinary.com/dsie3eeqb/image/upload/v1443796063/mycab2-lg_gh5e0z.png">
</div>
</div>
Here is the link on CodePen - http://codepen.io/sergiikovbasiuk/pen/meWrXK