CSS Code Standards

From PM Wiki
Jump to navigation Jump to search

Naming Conventions

Classes

CSS classes should all be lowercase:

.bold {
    
    font-weight: bold;
}

If a CSS class name contains multiple words, separate each word by a hyphen:

.black-background {

    background-color: #000000;
}