I'm facing a challenge in creating a row of 4 images that are responsive and uniform in size, despite being different dimensions (640x799, 640x479, ...). I've attempted to use columns and img-fluid to achieve this, but the shorter images do not fill the column height while the taller ones do. Any guidance or recommended resources would be highly appreciated.
Below is an example of the layout I am currently working with.
html
<div class="container">
<div class="row">
<div class="col">
<img class="img-fluid">
</div>
<div class="col">
<img class="img-fluid">
</div>
.....
</div>
</div>