JSFiddle - React, Tailwind, and code Playground

by kizer

HTML

<p>Hello, world!</p>

CSS

p {
 color: #333;   
}  

p:hover {
 color: #f60;
 -webkit-transition: color 0.8s ease-in-out;
 -moz-transition: color 0.8s ease-in-out;
 -o-transition: color 0.8s ease-in-out;
 -ms-transition: color 0.8s ease-in-out;
 transition: color 0.8s ease-in-out;   
}