JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
CSS
div {
width: 100px;
height: 100px;
background: red;
}
div::after {
content: 'poo';
color: white;
-webkit-transition: all 500ms linear;
}
div:hover::after {
color: blue;
}