Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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> 
share|improve this question
And just as I answer the question, I find a duplicate. One that I've voted on at that... – BoltClock Dec 18 '12 at 14:34

marked as duplicate by BoltClock Dec 18 '12 at 14:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

You can target the attribute by :

label[for="something"] {
   /* woohoo! */
}

For stands for the attribute name
and ="value" stands for its value.

share|improve this answer

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