JSFiddle - React, Tailwind, and code Playground
by Dineshkani
HTML
<div class="first" id="hello">Hello World</div>
<div class="first" id="desc">In here we give the class name to specify the some common properties and Id name for specify some unique properties.</div>
CSS
.first{
font-size: 30px;
}
#hello{
color: red;
}
#desc{
color: blue;
}