JSFiddle - React, Tailwind, and code Playground
HTML
<label foo="bar"></label>
<label></label>
CSS
label {
display: inline-block;
width: 100px;
height: 100px;
background: blue;
}
label[for="bar"] {
background: red;
}
<label foo="bar"></label>
<label></label>
label {
display: inline-block;
width: 100px;
height: 100px;
background: blue;
}
label[for="bar"] {
background: red;
}