On Jun 5, 11:54 am, "Sean Catchpole" <[EMAIL PROTECTED]> wrote: > My point is that, id's and classes are the same except for the fact > that you can only have one id per element, and only one of each id per > page. If you remove that uniqueness of id's then it strips much of > it's purpose.
CSS Specificity is a big reason to use id's. You can make a rule using
#id { ... }
and know that it will take precedence over all your tag/class-based
rules.
Matt Kruse

