I read that style IDs are supposed to be entirely unique and you can only use them once per page as apposed to style classes. Is this true? If so then why can I use it two, three, four, or more per page? Thank you for your help, extrickster
An ID can only be used once per page, a class can be used multiple times. If you use more than one of the same ID on the same page the page will not be valid.
Nothing happens to your layout on browser. It won't just validate against the W3C Validation. However, a class (.mom) can be used as many times you need. Read W3C specifications for more informations.