The list of supported CSS properties is growing quite large, and it's very easy to miss a typo in a single property when the property name isn't checked.

This rule checks each property name to make sure that it is a known CSS property. All vendor-prefixed properties are ignored because vendors may add in their own properties at any point in time, and there are no canonical lists of these properties. This behavior is different than a CSS validator, which warns when a vendor-prefixed property is used.

Noncompliant Code Example

/* Noncompliant: 'clr' isn't a known property */
a {
  clr: red;
}

See