JSFiddle - React, Tailwind, and code Playground

by David Kyle

HTML

<div class="color-change">
Hello
</div>

CSS

.color-change {
  display: block;
  width: 50%;
  margin: 0px auto;
  text-align: center;
  color: black;
  background-color: #aa0000;
  transition: all 2s ease-in-out;
}

.color-change:hover {
  background-color: cyan;
  transition: all 2s ease-in-out;
}

JavaScript

alert('hello chicken');