Consider using object-fit to achieve this.
.container img {
object-fit: cover;
max-height: 100px;
}
<div class="container">
<img src="https://placehold.co/300x400" />
<img src="https://placehold.co/400x300" />
<img src="https://placehold.co/500x300" />
</div>