vote up 0 vote down star
1

<div id="example-value"> or <div id="example_value">?

This site and Twitter use the first style. Facebook and Vimeo - the second.

Which one do you use and why?

flag

0% accept rate

2 Answers

vote up 1 vote down

I believe this is entirely up to the programmer. You could use camelCase too if you wanted (but I think that would look awkward.)

I personally prefer the dash, because it is quicker to type on my keyboard. So I would say that you should go with what you are most comfortable with, since both your examples are widely used.

link|flag
1  
this question is similar and verifies this answer stackoverflow.com/questions/70579/… – Matt Smith Nov 8 at 15:48
vote up 1 vote down

Either example is perfectly valid, you can even throw into the mix ":" or "." as separators according to the w3c spec. I personally use "_" if it is a two word name just because of its similarity to space.

link|flag
1  
Yes, you can use colons and periods for Ids, but that's a good way to get the person writing the CSS file to hate you. – Dave Markle Nov 8 at 15:47
A HTML identifier ZZ:ZZ would have to be escaped as ZZ\00003AZZ (CSS2 and above). – McDowell Nov 8 at 16:36
I didn't say it was good practice, I said it was valid. – Myles Nov 8 at 17:19

Your Answer

Get an OpenID
or

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