The W3C specifications define the valid CSS properties. Only the official and browser-specific properties should be used to get the expected impact in the final rendering.

This rule ignores:

Noncompliant Code Example

a {
  colour: blue; /* Noncompliant; colour is not part of the specifications */
}

Compliant Solution

a {
  color: blue;
}