I created a bootstrap webpage with a row of DIVs, each containing an image. As I resize the browser window, I noticed that the height of the first two DIVs remains consistent, but the third div's height varies because the image is only 50 pixels high.
<div class="row">
<div class="col1 col-md-4">
<img src="image160x160.jpg" alt="">
</div>
<div class="col2 col-md-4">
<img src="image160x160.jpg" alt="">
</div>
<div class="col3 col-md-4">
<img src="image160x50.jpg" alt="">
</div>
</div>
Is there a way to ensure that all DIVs maintain the same height regardless of screen resolution?