JSFiddle - React, Tailwind, and code Playground

by karthick6891

HTML

<!-- label for -->

<label for="User">Click me</label>
<input type="text" id="User" name="Name" />

CSS

label[for=User]
{
    background-color: gray;
}