JSFiddle - React, Tailwind, and code Playground

by Brian Blakely

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;
}