JSFiddle - React, Tailwind, and code Playground

by Zaheer Ahmed

HTML

<div id="DivId" class="div-class" >Here is content div...</div>

CSS

div{
background-color:red;
width:100px;
height:100px;
}

#DivId{
background-color:green;
width:200px;
height:200px;
}

.div-class{
background-color:yellow;
width:300px;
height:300px;
}