JSFiddle - React, Tailwind, and code Playground
by brian
HTML
images in an image container
<div class="div">
<div class="img-container">
<img src="http://placehold.it/250x200" alt="">
</div>
<div class="img-container">
<img src="http://placehold.it/200x250" alt="">
</div>
</div>
<br><br><br>
images by themselves
<div class="div">
<img src="http://placehold.it/250x200" alt="">
<img src="http://placehold.it/200x250" alt="">
</div>
CSS
.img-container{
display: inline-block;
border: 1px solid black;
width: 200px;
height: 200px;
overflow: hidden;
}