object-fit Scale Down
Preview
Code
<style>
.box{
width:200px;
height:140px;
background:#eee;
}
img{
width:100%;
height:100%;
object-fit:scale-down;
}
</style>
<div class="box">
<img src="https://via.placeholder.com/400x250">
</div>