JSFiddle - React, Tailwind, and code Playground

by Preetha Srinivasan

HTML

<div class="outer">
  Test
  <div class="inner">
    inner
  
  </div>
</div>

CSS

.outer{
  background-color:red;
}

.inner{
   background-color:blue;
}