JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent">
    <img class="child" src = "http://www.mouserunner.com/images/WindowsIconPreview_128x128.png" />
</div>

CSS

.parent{
    width:300px;
    height:300px;
    position:relative;
    border:1px solid red;
    padding:10px;
}

.child{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
    max-height:300px;
    max-width:300px;
}