When is it best to use them?
I have seen navigation lists with either, but which would be the best in that instance.
Page 1 of 1
Class or IDs
#2
Posted 28 December 2008 - 10:01 AM
I'm sure the others will have differing opinions, but basically, I use IDs for everything that will be unique in my site. For example, I only have one main menu so I'll use an ID for that. For the things that will recur in my site (boxes, styles, etc), I use a class.
#3
Posted 28 December 2008 - 10:32 AM
Quote
I'm sure the others will have differing opinions....
#4
Posted 28 December 2008 - 11:22 AM
I try to use as few IDs as possible, but use them when necessary.
For instance, I might have a header, a navbar, a content area, and a sidebar on a site. Each of those divs would have an ID, and everything under it would have either a class, or nothing. I would assign another id if I had a discrete content object - like a Coda slider, or something.
For instance, I might have a header, a navbar, a content area, and a sidebar on a site. Each of those divs would have an ID, and everything under it would have either a class, or nothing. I would assign another id if I had a discrete content object - like a Coda slider, or something.
#6
Posted 28 December 2008 - 12:45 PM
Quote
what is a Coda slider?
It's a javascript effect, made popular by the Coda website. An example of the effect is here: http://www.ndoherty....slider/1.1.1/#1
As most people are saying, I usually organize my code something like this:
The main divs that stay consistent on every page use id's, and anything inside those main divs use classes.
Benjamin Falk | Falken Creative : Twitter : KillerSites Screencast Blog
Skills: Photoshop, Illustrator, HTML, CSS, jQuery, PHP and CodeIgniter
Skills: Photoshop, Illustrator, HTML, CSS, jQuery, PHP and CodeIgniter
#7
Posted 28 December 2008 - 08:30 PM
You should be using IDs whenever possible. It makes the page more robust and you have control of the elements, two parts of the site may use the same class but it does not work in one or the other so you then need two classes. If the class is in different IDs then it can look slightly different in each. So ID's allow you more flexibility and they can be used with not just CSS but in scripts and programming too. The best sites are those built almost exclusively of IDs. I rarely ever use classes as I can do more with IDs.
IDs may only exist once on a page. Classies can be used often on a page.
IDs may only exist once on a page. Classies can be used often on a page.
Thank You, Migwetth, Gunalche’esh, Ha’w'aa, Danke
Kyle
"90% of user's 'problems' can be resolved by punching them -the other 10% by switching off their PCs."
Kyle
"90% of user's 'problems' can be resolved by punching them -the other 10% by switching off their PCs."
Share this topic:
Page 1 of 1

Help



















