JSFiddle - React, Tailwind, and code Playground

by Leo Cavalcante

HTML

<form class="form">
    <div class="element">
        <label for="input">label</label>
        <input id="input">
    </div>
</form>

<form>
    <label>label <input></label>
</form>

CSS

form.form div.element {
    color: red;
}