JSFiddle - React, Tailwind, and code Playground

by Mehmet Yener

HTML

<div class="willbeInheritedDiv childDiv">
    some content
</div>

CSS

.willbeInheritedDiv
{
    width:300px;
    height:300px;
}

.childDiv
{
    background-color:green;
}