Browsers ignore invalid property values. Review those invalid property values and either remove them or update them.
/* '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 */
}
Based on W3C CSS specifications and main vendors API.
Status
| Property | Validator | Status |
|---|