JSFiddle - React, Tailwind, and code Playground

by Radhika Magaji

HTML

<body>
  <div class="div1">DIV1</div>
  <div class="div2">DIV2</div>
</body>

CSS

div{
  height:50px;
 width:50px;
}
.div1{
 background-color:rgb(103,135,2); 
}
.div2{
  background-color:rgb(38, 38, 38);
}