JSFiddle - React, Tailwind, and code Playground

by Amando Filipe

HTML

<div id="test" class="blue">I am blue because of .blue{}, and centered because of #test{}</div>
<div id="test" class="red">I am red because of .red{}, and centered because of #test{}</div>

CSS

#test{text-align:center;}
.red{background-color:red;}
.blue{background-color:blue;}