Is there a way to display images with the same height but different width in a row while maintaining responsiveness?
For instance, I would like to showcase 3 images side by side in a row, ensuring that each image has a consistent height.
<div class="row">
<div class="float-left">
<img src="img1.png" class="??">
</div>
<div class="float-left">
<img src="img2.png" class="??">
</div>
<div class="float-left">
<img src="img3.png" class="??">
</div>
</div>