JSFiddle - React, Tailwind, and code Playground

by Luiz Carlos Vieira

HTML

<div id="red">
		Vermelho
	</div>

	<div id="green">
		Verde
	</div>

	<div id="blue">
		Azul
	</div>

	<div id="yellow">
		Amarelo
	</div>

CSS

div {
		width: 200px;
		height: 200px;
		display:inline-block;
	    text-align: center;
	    font-weight: bold;
	    line-height: 200px;
	    color: black;
	}

	#red {
		cursor:...