JSFiddle - React, Tailwind, and code Playground

by crucify

HTML

<a href="#">
blah blah
</a>

CSS

a {
  display:inline-block;
  background-color:black;
  /* hover off */
  transition:background-color 1s;
  transition-delay:2s;
}
a:hover {
  background-color:#fff;
  /* hover on */
  transition:background-color 1s;
  transition-delay:0;
}