I use image width:100% (or 50% ) for img , this automatically calculates the height. Sometimes this is normal, but not in my case.
I need to display two images in a row with the same height, but the source images have different heights (so as a result, the two images also have different heights).
<div class="col-md-7 horizontal-list-media"> <img src="http://moneyti.co/wp-content/uploads/2016/01/16-Zingis-RUS.png" style="width: 50%" class="img-responsive"> <img src="http://moneyti.co/wp-content/uploads/2016/01/16-kazino-RUS-360x240.png" style="width: 50%" class="img-responsive"> </div>

Since both images have different heights, the resulting images also have different heights. I do not want it. How to make both images the same height? Keep in mind that images should react when the screen size changes, so I can't just add the height property of both images, I think.
I also cannot change the height of the original images. I need to do this with css if this is not possible - then with jquery.
source share