JSFiddle - React, Tailwind, and code Playground
by Avijit Kumar
HTML
<html>
<body>
<div class="container">
<div class="box">Hello</div>
<div class="box">Hello</div>
</div>
</body>
</html>
CSS
.box{
width:30px;
height:30px;
background-color:blue;
color:green;
}