Possible Duplicate:
What characters are valid in CSS class names?
Don’t if this is suppose to be like this, but when I specify a class: .3plans, it does not apply the styling. But when I change the class name to .plans, it recognizes the style. Why is that? Note that the .3plans class is unique and there is no other style like that in my sheet, so it cannot be a duplicate. Is this phenomenon a common CSS practice? (not to use numbers in styles)
If
class&IDis start from number then is not recognized by css. But you can write like this.plans3instead of.3plans.As per W3c
Check this discussion for more Which characters are valid in CSS class names/selectors?