JSFiddle - React, Tailwind, and code Playground

by karthick6891

HTML

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<div class="box c-red">
Box1
</div>
<div class="box c-green">
Box2
</div>
<div class="box c-yellow">
Box3
</div>

CSS

.box{width:100px; height:100px; display:block}
.c-red{background:red;}
.c-green{background:green;}
.c-purle{background:yellow;}