JSFiddle - React, Tailwind, and code Playground

HTML

<p>No red block:</p>
<p class=working>Red block:</p>

CSS

p:after {
    background: red;
    width: 10px;
    height: 10px;
    display: inline-block;
}

.working:after {
    content: '';
}