JSFiddle - React, Tailwind, and code Playground

by fezec

HTML

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

CSS

#parent{
     width:230px;
     height:230px;    
     background:blue;
     padding:10px;

}


#child{
background:red;
height:100%;    
  width:100%;
  margin-left:10px;
  margin-right:auto;
  top:0;
  left:0;
}