JSFiddle - React, Tailwind, and code Playground

by Josh Krauth-Harding

HTML

<a>Test this is a test hello hi</a>
Another sentence
<a>Ok third line</a>

CSS

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

a:hover {
  animation: flash 2s infinite;
}