JSFiddle - React, Tailwind, and code Playground
by DonnieDarko1
HTML
<div class="container">
<div class="content">
text text text
</div>
</div>
CSS
.container {
padding: 20px;
}
.content {
width: 50%;
background: white;
padding: 10px;
}
.content::after {
content: '';
background: red;
width: 10px;
height: 10px;
float: right;
}