As both hyphen (-) and underscore (_) are valid characters in CSS and HTML identifiers, what are the advantages and disadvantages using one or the other? I prefer writing CSS class names with hyphens (e.g. field-text) and underscores for IDs (e.g. featured_content). Is there a best practice or it's only the matter of taste?
| |||||||
feedback
|
closed as not constructive by Bill the Lizard♦ Sep 27 '11 at 12:54
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.
|
I think its just personal preference. I prefer using underscore. | |||||||||||||||||||
feedback
|
|
I see this is ancient and has already been answered, but I was surprised not to see anyone mention that using hyphens allows you to access elements with the following attribute selector:
From the w3c:
This is not possible by using underscore or camelCase attribute names. Forget the "lang" bit for a minute, and think about how this works with class names. For example, the popular jQuery UI uses the "ui-" prefix on everything. Need to change all UI borders to red without affecting anything else?
This is just one example of its many uses of course, but I think that taking this into consideration its fair to say that there is at least one advantage to using hyphens, and that it is not strictly a matter of personal preference. | |||||||||||||||
feedback
|
|
In CSS I tend to use hyphens, since that's what the practice is for CSS properties: text-decoration, background-color, etc. In Javascript, I tend to use camel case for the same reasons: textDecoration, backgroundColor. However, what I really wanted to point out (which is only slightly off-topic) is that for naming of images and urls, you should use hyphens as they are read as different words and benefit SEO better: http://www.mattcutts.com/blog/dashes-vs-underscores/ That's the only case that I know that naming conventions actually have an impact. | |||
feedback
|
|
It's really just preference, but if you are going to be doing programming to manipulate the DOM or passing identifiers such as form names to programming languages, usually underscores are nicer. For example:
If you are scripting it, you can do You forgot to mention that camelCase, like I'd be interested in hearing how other folks do it. | |||
|
feedback
|
|
I use hyphens. Hyphens are used for pseudo-classes so why not continue that pattern for classes? For IDs I tend to swap back and forth between camelCase and hyphens. Using camelCase emphasizes that this is an unique object and I usually only use IDs when I need to do something with the object from script. But using hyphens for IDs have the advantage that there aint much work if you change your mind and want to turn that ID identifier into a class instead. | |||||||||
feedback
|
|
I remember reading that there used to be browsers that didn't properly handle underscores (edit: it was the actual CSS1 spec that did not allow underscores unless escaped. here is a 2001 article by none other than Eric A. Meyer explaining the problem with underscores in class/id names). That was long ago and it's really just a personal preference now, but there are historical reasons why one might still avoid underscores. I personally prefer hyphens because they're: 1) easier to type 2) most (mac) applications treat hyphens as word separators and underscores as part of a word (when double clicking on the text). I find it easier to work with when you use any kind of namespacing in your class/id names (nav-main, nav-secondary, nav-utility, etc). 3) I usually use underscores in javascript variables. And it's a little easier to tell the js vars with underscores apart from the class/id names with hyphens. The other option is to use camelCase class and id names. Personally camelCase class and id names drive me crazy as I'm of the opinion that all HTML should be lowercase including class/id names. But it can be argued that camelCase does save a small amount of file size. | ||||
|
feedback
|
|
As the fellow SOists stated, now its a matter of taste. However if you have to support old school browsers, consider using hyphen and forget the underscore - all those legacy browsers had problems, see this reference. Using camelCased class and id names is an other good practice. I personally use hyphens or very short names eg. | |||
|
feedback
|
|
I don't know of any official practices, but I tend to use hyphens where they are allowed. Underscores might be better if you intend to directly map identifiers from programming languages to your CSS/HTML, but I haven't had any projects like that in my career. I don't like underscores because you need to press Shift in order to type them whereas hyphens are just a single press of a key. No matter which way you go - do not mix those two without clear rules, because you'll be lost trying to remember which one you used here or there. | |||
feedback
|
|
I use underscores and the only reason that i am doing so is when in an editor when you double click an underscore seperated text it will select all text including underscore, if you do the same on the text with hyphens it will only select till the first hyphen. for example: "my_item" if you double click on this, selected text will be my_item, "my-item" if you double click on this, selected text will be either my or item and if it is like "my-really-long-named-item-has-a-class-name" it is getting really annoying to select the text, even you use your keyboard. which i find useless, but the choice is highly upto programmer, which you find is best is the best. Also this text selection issue might be different on some editors, but generally this is inherited from operating system's default behaviour. You can also try on this post, it will probably select as i pointed. Sinan. | |||||||||
feedback
|
|
If someone still isn't sure about this: The first CSS specification did not allow underscores in class and ID names unless they were escaped. (In this way: So for historical reasons, do not use underscores. | |||
|
feedback
|
|
Underscores are the only option which is at home in all four languages, html, css, javascript and php. Dashes in identifier names aren't legal in php or javascript and camelCase is out of place in html because of the capitals. Underscores are a pretty common convention in most php function names. With this said I invoke Occam's Razor and say that because underscores will do just fine everywhere: Use only underscores! The css attribute prefix selector trick is of dubious usefulness compared to the detriment of complicating your naming conventions and having to use conversion functions wherever you need to use a css class or id as an identifier in one of the other languages. | |||
|
feedback
|
|
For most people, underscores are unnatural. Since CSS is often written and edited by web designers, i.e. normal people, using hyphens is better. In fact, many non-programmers don't even see the underscore, i.e. if they spelled an identifier out loud they would say "dash" for the underscore. | |||
|
feedback
|
|
The only potential problem is if you were to manipulate those identifiers with a programming language that would mistake the hyphen as a minus sign and think you are trying to perform a math operation, subtraction in this case. | |||
|
feedback
|
|
In Adobe Flex, you use Camel Case. This article seems to think its a CSS 2 standard to use:
| ||||
feedback
|