JSFiddle - React, Tailwind, and code Playground
by Torwan
HTML
Portrait Div
<div class="portrait">
<img src="http://placekitten.com/200/100">
</div>
Landscape Div
<div class="landscape">
<img src="http://placekitten.com/100/100">
</div>
Square Div
<div class="square">
<img src="http://placekitten.com/100/100">
</div>
CSS
img {
max-width: 100%;
max-height: 100%;
}
.portrait {
height: 80px;
width: 30px;
}
.landscape {
height: 30px;
width: 80px;
}
.square {
height: 75px;
width: 75px;
}