up vote 9 down vote favorite
2
share [g+] share [fb]

There is much to read out there concerning this old question. Most languages seem to have their preferred style - and everythings ok with this.

But what about this question of style in the CSS context? Both is correct and looks fine:

someContainerContent vs. some_container_content

What do you think?

  • Which is your and what do you think is the community's preferred style?
  • Do you see advantages in one or the other?
  • Or just disadvantes?

I'm currently writing java and ruby and so I'm switching between both all the time. In CSS I often catch myself by writing both, which is quite troublesome.

Please provide my some help to decide which case to use and have my code awesome styled! ;)

link|improve this question

It's blowing my mind that every post about this forgets a very relevant and not-new css selector elm[attr|=val], see here http://stackoverflow.com/questions/1686337/hyphens-or-underscores-in-css-and-html-identifiers/5598250#5598250) – Madmartigan Apr 17 '11 at 13:05
feedback

6 Answers

up vote 27 down vote accepted

The most typical style is to separate words with hyphens "-".

div.some-container-content
{
}

The underscore and camelCase versions however have a little advantage - double-click (in Visual Studio) selects the complete word. In case with hyphens it will only select a part of the word surrounded by hyphens.

link|improve this answer
3  
+1 for giving an answer, then providing the definite argument against it :) Edit: Oh, it seems somebody is necromancing. Whatever. – Thomas Apr 4 '10 at 16:15
...until you have text editor, which has i.e. alt-click defined to "select counting with hyphens". – Adam Kiss Apr 4 '10 at 16:24
feedback

We use camel case because of a method we use for loading CSS selectors into JSON objects using PHP. Hyphenated class/id names aren't valid as JS object members.

link|improve this answer
1  
camelCase forTheWin. I dontUsuallyLike havingTo pressShift whenTyping variableNames. extraKeystrokes are a painInTheRear. – snicker Oct 1 '09 at 17:21
6  
iNeverThoughtAboutIt untilNow, but itsNot the pressingShift thatBothersMe, it's the stretchToTheDashKey. I justPressedShift manyTimes. – snicker Oct 1 '09 at 17:22
5  
why not put class names in quotes? JSON {'ui-container-panel': "someValue"; } is totally valid. – Török Gábor Apr 12 '11 at 12:12
feedback

That is totally up to you. Here at my work we use hyphens, like

.some-container {
  color: red;
}
    .some-container div {
      color: blue;
    }

It just doesn't matter. Follow your team rules, that's all.

link|improve this answer
feedback

I personally prefer to keep my classes lowercase, so use the some_container_content variant.

There's no particular advantage to be gained by using one over the other, just use what's already there if you're working on existing code, or choose whichever you find easier to read.

link|improve this answer
feedback

I use hyphens with class names and camel case for IDs.

but i NEVER use underscores, purely because I think it looks messy :D

It doesn't really matter though, just pick one you find you can read easiest and make sure you stick to it to help your self out in the future (and others that may edit your stylesheets).

link|improve this answer
feedback

In most IDEs & editors underscores work with autocompletion & double click select hyphens can block autocompletion & double-click select.

Therefore as there is no language guideline on the issue, I would prefer to use underscores.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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