JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="inner">
</div>
</div>
CSS
.container {
width: 600px;
height: 600px;
background-color: red;
}
.inner {
background-color: yellow;
width: 100px;
height: 100px;
margin: auto;
vertical-align: center;
top: 250px;
position: relative;
}