JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#sdghfgsdef" id="test">Text</a>
CSS
@-webkit-keyframes test
{
from { color: red; }
to { color: green; }
}
@keyframes test
{
from { color: red; }
to { color: green; }
}
#test:link, #test:visited, #test:active
{
animation: test 3s 1s both;
}