JSFiddle - React, Tailwind, and code Playground

by Craig Haywood

HTML

<div class="container">
    <img  src="http://placehold.it/200x200" />
</div>

CSS

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    width: 100vw; /*customize to your needs 100%*/
    height: 100vh; /*customize to your needs*/
}
.container img
{
  max-width:100%;
  max-height:100%;
}