JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
  <img src="http://placekitten.com/400/500" />
</div>

CSS

.container {  
  background: blue; 
  padding: 10px; 
  max-height: 200px; 
  max-width: 200px;
  height: 200px;
}

img { 
  display: block;
  max-height: 100%; 
  max-width: 100%; 
}