JSFiddle - React, Tailwind, and code Playground
HTML
<div>
Hi there, I'm example text
</div>
CSS
div{
border: 10px solid;
color: cyan;
width: 100px;
transition: color 3s;
padding: 20px;
}
div:hover{
color:magenta;
}
<div>
Hi there, I'm example text
</div>
div{
border: 10px solid;
color: cyan;
width: 100px;
transition: color 3s;
padding: 20px;
}
div:hover{
color:magenta;
}