JSFiddle - React, Tailwind, and code Playground
by howtoplease
HTML
<div class="div">
This is div one
</div>
<a class="anchor">THis is anchor</a>
<p>this is paragraph</p>
CSS
div {
color:red;
font-size:50px;
padding:20px;
}
a{
color:#fff;
background:#333;
font-size:10px;
}
p{
color:#aaa;
}
}