JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<input type="text" />
<label for="e_mail">E-Mail</label>
</div>
CSS
label {
float: left;
margin-right: 5px;
}
input[type=text]:focus + label {
color: red;
}
<div>
<input type="text" />
<label for="e_mail">E-Mail</label>
</div>
label {
float: left;
margin-right: 5px;
}
input[type=text]:focus + label {
color: red;
}