JSFiddle - React, Tailwind, and code Playground

by farhan2056

HTML

<html>
  <head>
  </head>
  <body>
  <div class="grand">
    <div class="parent">
      <div class="child">
      g
      </div>
    </div>
  </div>
  </body>
</html>

CSS

.grand{
  background: red;
}
.parent{
  background: blue;
}
.child{
  background: green;
}

div{
  height: 400px;
  width: 400px;
}