Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

How about CSS 2 Attribute Selectors It is pretty compatible amongst browsers.

Example:

<style>
label[required=required]
{
color: blue;
}
</style>
<label required="required" for="one">Label:</label><input name="one" id="one" />

Also check this out.

share|improve this answer
2  
Apparently questions and answers use formatting, but comments do not. The problem with that suggestion is that the required attribute belongs to the input element, not the label element. <label for="email">E-mail address:</label> <input id="email" type="email" name="email" required="required"/> Also in the CSS, better off just saying: input[required] because the only valid markup is: HTML -> required XHTML -> required="required" required="false" or anything like that is not valid. – Ted Bergeron Jan 19 '10 at 5:08
yeah, required=required is unnecessary. But if then he wants to be able to get all of the label tags attached to inputs that have the required attribute I don't think that is possible. You can get all the inputs @required input[required], but not all the labels unless they are a child node of the input, which is incorrect even in HTML. – Tom Jan 22 '10 at 12:05

This solution works in most modern browsers:

<style>

label > input[required="required"] {
    background: red; 
}

</style>
<label for="myField"><input required="required" id="myField" /></label>
share|improve this answer
1  
I think the OP was asking for a selector that would generically apply to all required elements, to avoid specifying a selector for every element. – Don Spaulding Apr 30 '12 at 22:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.