Skip to content

CSS rules

Declaring

Lowercase syntax

css css css css css css css css css css

Use lowercase for all CSS syntax.

Before

BODY {
  BACKGROUND-COLOR: RED;
}

After

body {
  background-color: red;
}

Formatting

Indent style

css

Use two spaces for indentation.

Before

body {
    background-color: red;
}

After

body {
  background-color: red;
}