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.

The HTML spec allows for periods (.) in an id:

<img id="some.id" />

However, using a CSS ID selector rule will not match correctly:

#some.id { color: #f00; }

The CSS spec for ID Selectors does not mention this case. So I assume it is using the combination of a tag name and class selector that would, in this example, apply to all link <a> tags with a class name of className. For example, a.className would match <a class="className"></a>.

Is it possible to have an external CSS file rule that references an HTML element by its id that has a period in it?

I expect not since the CSS spec specifies that a CSS "identifier" does not include the period as a valid character. So is this a fundamental mismatch between HTML and CSS specs? Is my only alternative to use a different type of CSS selection? Can anyone smarter than I confirm or deny this?

(I would remove the period from the HTML id attribute to simplify things, but it is a system-generated id, so I don't have the ability to change it in this case.)

share|improve this question
You could say that this is a fundamental mismatch between HTML and CSS. However, as they're two different languages, it is not expected that they match up; an HTML identifier is an HTML identifier while a CSS identifier is a CSS identifier. Also, CSS can style other languages too, not just HTML (although granted, CSS was made for HTML in the beginning). – BoltClock Sep 7 '12 at 8:01
1  
Also #some.id is using the combination of ID and class selector. – BoltClock Sep 7 '12 at 8:02

1 Answer

up vote 11 down vote accepted

Classic. Just after digging through all the specs writing the question, I read through it some more and found there is an escape character. I've never needed it before, but the spec does allow for backslash (\) escaping like most languages. What do you know?

So in my example, the following rule would match:

#some\.id { color: #f00; }

share|improve this answer
1  
Good research job. There should be more Q&A like this, no like „write my code instead of me“. – Pavlo Mykhalov Sep 7 '12 at 9:20
Mark your answer as accepted — it's the truth! – Barney Mar 22 at 13:50
@Barney: Forgot to go back after the waiting period to mark it. Thanks for reminding me. Glad it helped you too! – Jon Adams Mar 22 at 14:29

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.