JSFiddle - React, Tailwind, and code Playground

by kodjoe mambi

HTML

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

CSS

.parent{
  height: 60px;
  width: 60px;
  background-color:yellow;
  
}

.child{
  height: 40px;
  width: 40px;
  background-color:red;
}

body{
  background-color: #4444;
}