JSFiddle - React, Tailwind, and code Playground

by bergb

HTML

<div id="parent">
    <div id="child">voila</div>
</div>

CSS

#parent{
    width:600px;
    height:400px;
    background:#ffcc00;
    text-align:center;
    position:relative;
}

#child{
    display:inline-block;
    margin:0 auto;
    background:#fff;
    position:relative;
    top:190px;
}