vote up 5 vote down star
1

Hi there,

Does anyone know of a good resource to explain good naming conventions for HTML ID and classes and whether to prefix with IDs with an element type i.e. btn or button or similar?

Should classes be plural or singular? I get that IDs should be singular due to them being unique, but what about classes?

IDs and classes should use nouns, right?

I am using pages that inject other pages in the existing pages, kind of like partial pages ... hence... I was wondering if anybody as prefixed a name in front of IDs and/or classes .. kind of like a namespace or similar?

Any comments or insights really appreciated.

flag

3 Answers

vote up 5 vote down check

I wouldn't prefix with the type, as you can infer this in the selector if you must

form#contact {
    property: value;

}

The method you described is known as Hungarian notation, and isn't very popular.

For what you mention, you could place your injected HTML inside one div with one unique class/id, which has a sort of localised reset. Look up CSS selector specificty to ensure your rules will take affect and not other rules in the host page's CSS. See this answer to a similar question regarding styling an element within a parent page.

link|flag
agreed (don't add the type)... however there is a catch. In old versions of IE, you couldn't style some types of input elements different than others (without) adding a class to certain types. e.g. an input type="text" vs. an input type="button". You would want different styles for each but IE didn't support the input[type=button]{...} syntax – scunliffe Jun 2 at 15:17
Are you talking about IE6? – alex Jun 2 at 22:36
vote up 3 vote down

Six revisions has done a good doc on the subject.

http://sixrevisions.com/css/css-tips/css-tip-2-structural-naming-convention-in-css/

link|flag
Very good article on the subject. – rpflo Jun 2 at 14:49
vote up 0 vote down

A lot of people don't realize you can do this stuff:

.awesome {
 /* rules for anything awesome */
}

div.awesome {
 /* rules for only awesome divs */
}

button.awesome {
 /* rules for any awesome buttons, but not awesome divs */
}

div.awesome h1 {
 /* rules for H1s inside of any div.awesome */
}

div.awesome>button {
 /* rules for immediate children buttons (not grandchildren+) of div.awesomes */
}
link|flag

Your Answer

Get an OpenID
or

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