up vote 39 down vote favorite
14
share [g+] share [fb]

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?

link|improve this question

I've just realized there is already a similar question on SO: stackoverflow.com/questions/1437527/css-camelcase-vs-underscore – Török Gábor Nov 10 '09 at 8:41
Personally I use hyphens because they are quicker to type (no Shift key). Same reason I use single quotes instead of double quotes where possible. – DisgruntledGoat Apr 17 '10 at 17:21
I use double quotations because of the different way PHP interprets them. Often using PHP means I can echo using single quotations, without having to escape them using forward slashes. Most people also tend to use double quotations in HTMl, in fact I thought you had to! – theorise Jun 28 '10 at 12:15
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.

14 Answers

up vote 19 down vote accepted

I think its just personal preference.

I prefer using underscore.

link|improve this answer
4  
I'd like to point out that it became a rather universal standard among developers to use _ for IDs and - for CSS class names. – Robert Koritnik Nov 6 '09 at 14:14
19  
@Robert: really? Why? I've never heard of anyone stating that, and I like to think I stay up on standards and best practices. – Ryan Doherty Nov 6 '09 at 16:43
5  
Can you point us to a source for that, Robert? – jennyfofenny Nov 7 '09 at 16:33
Any reason for the down vote? – rahul Nov 9 '09 at 4:37
7  
Personally, I avoid hyphens -- and there's an actual reason -- it drives me nuts when double clicking in various text editors -- if it has an underscore it selects the whole selector, but with a hyphen: NO LOVE. – American Yak Apr 20 '11 at 19:06
show 2 more comments
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:

[attr|="value"]

From the w3c:

E[lang|="en"] Matches any E element whose "lang" attribute has a hyphen-separated list of values beginning (from the left) with "en". 

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?

    [class|="ui"] {border-color:red}

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.

link|improve this answer
That's pretty cool. I never knew that. Thanks for the useful info. – helixed May 22 '11 at 0:23
Never knew that! – Jason Gennaro Jun 10 '11 at 23:26
Yeah, that's esoteric and totally awesome. – fisherwebdev Aug 28 '11 at 4:18
3  
This isn't really true as [attr*="value"] will match both minus and underscore separated classes as well as camelCase classes, and it's supported in all browsers (IE7+). Furthermore, as you point out, [attr|=value] only works if it's the first item in the class list, so there's a good chance it won't match every jQueryUI element. Here's a jsFiddle demonstrating my point: jsfiddle.net/Gt6Lm – Philip Walton Nov 6 '11 at 21:11
1  
@PhilipWalton: You're absolutely right, and your demo explains it very clearly. I had forgotten about *=, and support for it is nearly identical to |= while it seems to be a lot more useful. I'm surprised no one caught this sooner. – Madmartigan Nov 7 '11 at 0:31
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.

link|improve this answer
The SEO benefit is one of the reasons microformats stick to using hyphens instead of underscores. – qid Nov 6 '09 at 20:27
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:

<input type="text" name="my_input" id="my_input" />

<input type="text" name="my-input" id="my-input" />

If you are scripting it, you can do var my_input = document.getElementById('my_input'); or parse the incoming value when POSTed to php with <?php $my_input = $_POST['my_input']; ?>. However, the dashed version won't be translatable in either JavaScript or PHP because dashes are not allowed there.

You forgot to mention that camelCase, like myInput would be yet another convention for classes and ids.

I'd be interested in hearing how other folks do it.

link|improve this answer
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.

link|improve this answer
1  
Can you please explain this sentence more? "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." – JohnB Oct 14 '10 at 16:17
I´m not sure what I was thinking a year ago but it might be something about sitting in a low-tech IDE w/o refactoring and/or global search-and-replace functionality. Switching the attribute from id to class and # to .. – anddoutoi Oct 15 '10 at 8:10
What?! sorry, did not make any sense. – iamserious Aug 30 '11 at 16:34
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.

link|improve this answer
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. .tagline or #menu avoiding verbosity and still taking care of semantics.

link|improve this answer
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.

link|improve this answer
I've had to map identifiers from programming languages to CSS/HTML many times! – JohnB Oct 14 '10 at 16:29
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.

link|improve this answer
1  
A smart text editor provides a way to customize what counts as word character--so this is not a real reason why not use hyphens. – Török Gábor Nov 6 '09 at 14:47
Unfortunately my editor, "CODA" does not provide that. It is still a real reason at least for me. – Sinan Yasar Nov 6 '09 at 17:22
Same with vi/vim. Typing vw to select a word stops at the first hyphen. – Hollister Jun 28 '11 at 16:17
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: "featured\_content"...)

So for historical reasons, do not use underscores.

link|improve this answer
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.

link|improve this answer
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.

link|improve this answer
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.

link|improve this answer
feedback

In Adobe Flex, you use Camel Case.

This article seems to think its a CSS 2 standard to use:

First and foremost, for those of you coming from a Web design background, it's important to understand that Flex CSS does not follow the same conventions as the W3C CSS spec. The hyphen (-) used to separate words in the W3C CSS Version 2.0 specification isn't used as part of the code convention in the Flex implementation. Instead, the Flex implementation of CSS uses camel case. For example, vertical-center in the W3C CSS2 spec is equivalent to verticalCenter in Flex CSS. If you're already programming in a language that uses camel case however, this is pretty easy to get used to. The good news is that most of what's available in the CSS 2.0 specification is also available with the Flex CSS implementation. Furthermore, the Flex implementation of CSS expands significantly on the CSS 2.0 W3C standard, offering additiona style properties that are unique to the Flex components.

link|improve this answer
That's true, but it deals with property names not custom CSS classes. That is the same case in JavaScript. – Török Gábor Jun 28 '10 at 12:25
feedback

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