JSFiddle - React, Tailwind, and code Playground

by Pritam Bohra

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
   <div class="container">
     <div class="grandparent">
       <div class="parent">
         <div class="child"></div>
       </div>
     </div>
   </div>
</body>
</html>

CSS

body, html {
  width: 100%;
  height: 100%;
}

.child {
  width: 600px;
  height: 300px;
  background: #BADA55;
  border-radius: 25%;
}