Possible Duplicate:
CSS selectors – how to select ‘for’ in CSS?
I have the following html. Can I target the label based on its for attribute (so only target this label)?
<label for="something">Text</label>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can target the attribute by :
For stands for the attribute name
and =”value” stands for its value.