Possible Duplicate:
is it possible to select element with specific content or attribute in CSS?
basically, I have access to the css for a third party form that I need to style, and the element has no ID so I was unsure of how to use css to style it, as I can’t use it’s class here is the form code:
<label class="form_label" for="example" style="">email</label>
How would it be possible to style this, so it will only apply to those which have the for attribute equal to example?
Many thanks.
You can select each label like this, and style it as need be: