答案 0 :(得分:1)
使用max-height
并为其指定值 - 与图像max-height: minimum-image-height(from both images)
相比的最小高度值。
请看下面的代码段:
.image {
max-height: 200px;
}
<div class="box">
<img src="http://placehold.it/200x200" alt="" class="image" />
<img src="http://placehold.it/300x600" alt="" class="image" />
</div>
希望这有帮助!
答案 1 :(得分:-1)
以下是使用flex:(http://codepen.io/dpes/pen/MbeBbd)
的codepen和snippet
.flex-container{
display:flex;
align-items: flex-start;
}
.flex-container img {
object-fit: contain;
max-height: 300px;
min-height: 300px;
}
&#13;
<div class="flex-container">
<img src="http://lorempixel.com/400/500/">
<img src="http://lorempixel.com/500/400/">
</div>
&#13;