JSFiddle - React, Tailwind, and code Playground
HTML
<div class="outer">
<div class="inner">
<p>Hello World</p>
</div>
</div>
CSS
.outer {
position: relative;
height: 300px;
background-color: yellow;
}
.inner {
position: relative;
top: 50%;
transform: translateY(-50%);
background-color: green;
width: 50%;
padding: 4%;
}