JSFiddle - React, Tailwind, and code Playground

by Abdul Ahmad

HTML

<div>
  howdy
</div>

CSS

div {
  color: black;
  padding: 10px 0;
  background-color: white;
  transition: background-color 1s linear, color 0.1s linear;
}
div:active {
  color: white;
  background-color: tomato;
  transition: background-color 0.1s linear, color 0.1s linear;
}