JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<img class="image">
</img>
</div>
CSS
.container {
background-color:red;
width:200px;
height:200px;
}
.image {
background-color:blue;
width:50%;
height:100px;
margin:0 auto;
display:block;
}