JSFiddle - React, Tailwind, and code Playground
HTML
<div id="centered">
in center
</div>
CSS
html, body {
height: 100%;
}
#centered {
position: absolute;
left: 50%;
top: 50%;
background: red;
}
JavaScript
var $container = $('#centered');
var mLeft = $container.outerWidth() / 2;
var mTop = $container.outerHeight() / 2;
$container.css({
'margin-left': -mLeft,
'margin-top': -mTop,
});