JSFiddle - React, Tailwind, and code Playground

by Ishank Dubey

HTML

<div class='parent'>
  
  <div class='child'>1</div>
  <div class='child'>2</div>
  
</div>

CSS

.parent{
  background-color:red;
  width:500px;
  height:300px;
}

.child{
  display:inline-block;
  background-color:green;
  w
}