JSFiddle - React, Tailwind, and code Playground
HTML
<div class="outer" style="border: 1px solid red; height:300px; width:300px">
<div id="imgDiv"></div>
</div>
CSS
div.outer{
position:relative;
}
#imgDiv {
width: 300px;
height: 100px;
background-image: url("http://www.google.com/intl/en_com/images/srpr/logo3w.png");
background-repeat: no-repeat;
border: 1px solid blue;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}