CSS Naming Conventions
Basic Rules
1. Use small letters to name classes and id’s . eg: #footer, .round
2.
a. Use hyphen (-) to separate mutiple words. eg: #main-container, .round-box,
Or
b. Use uppercase to separate multiple words. eg: #mainContainer, .roundBox
