JSFiddle - React, Tailwind, and code Playground

by mblase75

HTML

<div class="field_with_errors"> Label: </div>
<div class="field_with_errors"> <input type="text"/><span></span> </div>

CSS

.field_with_errors{
    display: inline;
    color: red;
}
.field_with_errors input+span:after{
    content: "*"
}