JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrap">
<div class="block"></div>
</div>
CSS
.wrap {
position: absolute;
width: 100%; height: 100%;
top: 0; left: 0;
background: orange;
}
.block {
width: 300px; height: 300px;
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
background: red;
}