JSFiddle - React, Tailwind, and code Playground

HTML

<label>
    <span>
        TESTING
    </span>
</label>

CSS

label {
    display: inline-block;
    text-transform: lowercase;
}

label::first-letter {
    text-transform: uppercase;
}