JSFiddle - React, Tailwind, and code Playground
HTML
<div id="block" style="background-color:#000000;height:100px;width:100px;">
</div>
JavaScript
document.getElementById('block').style.position = "absolute";
document.getElementById('block').style.left = document.getElementById('block').style.top = "50%";
document.getElementById('block').style.transform = "translate(50%, 50%)";