JSFiddle - React, Tailwind, and code Playground

by mpsingh2003

HTML

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

CSS

#parent {
    width:500px;
    height:500px;
    background-color:red;
    display:flex;
    justify-content:center;
    align-items:center;
}
#child {
    width:200px;
    height:200px;
    background-color:yellow;

}