Skip to content

Coding Standards—CSS

Reuben L. Lillie edited this page Feb 5, 2019 · 2 revisions

Structure

Place selectors on separate lines.

Indent property: value; declarations with four spaces, not tabs.

Put a colon followed by a single space between property and value, followed by a semicolon.

element,
.class-selector {
    property: value;
}

Clone this wiki locally