Browsers ignore invalid property values. Review those invalid property values and either remove them or update them.

Noncompliant Code Example

/* 'word-spacing' validator is 'normal | <length> | <percentage>' */
.mybox {
  word-spacing: 10px;
  word-spacing: normal;
  word-spacing: 0;
  word-spacing: inherit;
  word-spacing: 10%;
  word-spacing: 10;       /* Noncompliant: Missing length unit */
  word-spacing: abc;      /* Noncompliant: 'abc' value is not allowed */
}

Implemented Validators

Based on W3C CSS specifications and main vendors API.

Status

[[propertyValidators]]
Property Validator Status