JSFiddle - React, Tailwind, and code Playground

by jessekinsman

HTML

<p>test</p>

CSS

p {
    font-size: 200%;
}

p:hover {
    -webkit-animation: test 2s infinite;
}
@-webkit-keyframes test {
    0% {color: red;}
    50% {color:green;}
    100% {color: red}
}