JSFiddle - React, Tailwind, and code Playground
HTML
<div class="almost-centered">
I'm almost centered DIV lorem ipmsum
</div>
<div class="centered">
I'm exactly centered DIV using CCS3
</div>
CSS
.almost-centered {
background-color: #eee;
position: fixed;
width: 40%;
text-align: center;
top: 5%;
left: 50%;
padding: 20px;
margin-left: -20%;
}
.centered {
background-color: #eee;
position: fixed;
width: 40%;
text-align: center;
top: 25%;
left: 50%;
padding: 20px;
transform: translate(-50%, 0);
}