JSFiddle - React, Tailwind, and code Playground

HTML

<Fieldset>
    <Legend>Form Title</Legend>

    <div class="editor-label">
        <label>Town / City</label>
    </div>

    <div class="editor-field">
        
        <textArea></textArea>
        <span class="field-validation-error">
            The town / city field is required
        </span>
    </div>

</Fieldset>

CSS

.editor-label {
    margin: .8em 0 0 .5em;
    clear: left;
    float:left;
    width: 160px;
}

.editor-field {
    margin: .5em 0 0 0;
    float: left;
}
textarea {
  float:left;
}