JSFiddle - React, Tailwind, and code Playground
HTML
<div class="parent">
<img src="http://yastatic.net/morda-logo/i/logo.svg" alt="">
</div>
CSS
.parent {
position: relative;
width: 600px;
height: 600px;
margin: 0 auto;
background: #eee;
}
img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}