Is there a way in CSS to select labels bound to input fields (via the for attribute) having the required attribute set? Something like:
label:input[required] {
...
}
Currently, I'm adding class="required" to labels and inputs for styling. I now have the HTML5 attribute required="required" in the required input fields. It would be nice to remove the redundant class attributes.
The closest answer I found doesn't use the label element's for attribute, but would require that the label be directly adjacent to the input in the HTML.