JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class=item></div>
</div>
CSS
.container {
position: relative;
height: 100px;
border: 1px solid;
}
.item {
height: 30px; /*You can change this to any other value*/
width: 30px; /*You can change this to any other value*/
background: red;
position: absolute;
top: calc(50%);
left: calc(50%);
transform: translate(-50%, -50%);
}