JSFiddle - React, Tailwind, and code Playground
HTML
<div class="content">
<div class="test">
</div>
</div>
CSS
.content {
width: 300px;
height: 200px;
background: blue;
position: relative;
clear: both;
}
.test {
width: 10px;
height: 10px;
left: 50%;
top: 50%;
background: red;
position: absolute;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
}