JSFiddle - React, Tailwind, and code Playground

by Nic Fontaine

HTML

<button id="d">HI THERE</button>

CSS

button {
	width: 400px;
	height: 400px;
	background: teal;
}
button:active {
	background:orange;
}
button:focus {
	background: red;
}