Elements and Rules

Rules can be applied singularly or to one or more selectors:

NOTE: CSS is not whitespace dependent. In other words, one does not need to include extra lines between rules. However, this shown style increases readability of one’s code. It’s polite.

Multiple Selectors with Different Rules

You can add more than one style rule to the same element. All you need to do is finish each selector/declaration set with a semicolon ; to let your browser know you have finished with this rule and to move onto the next one. Once you have finished adding all of your style rules, you add the closing curly bracket (}) to tell your browser you have finished adding style rules to that element. All of an element’s style rules must go inside curly brackets.

CSS
/* Rule 1: Applied to all h1 elements. */
h1 {
    /* Style declarations go here. */
}

/* Rule 2: Applied to all paragraphs. */
p {
    /* Style declarations go here. */
}

Multiple Selectors with the Same Rules

If one needs to apply the same rules to more than one element, they can select multiple elements in a single style rule. To do so, separate each selector element with a comma (,).

One can apply additional, unique style rules to an already styled element. These rules are cumulative.

CSS
h1, h2, p {
    /* Style rules applied to all h1, h2, and paragraph elements. */
}

p {
    /* Additional style rules applied only to paragraph elements. */
}