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;
}
by Mehmet Yener
<div class="willbeInheritedDiv childDiv">
some content
</div>
.willbeInheritedDiv
{
width:300px;
height:300px;
}
.childDiv
{
background-color:green;
}