MDN states that the word-spacing
property has the ability to accept a percentage value, which "specifies extra spacing as a percentage of the affected character’s advance width." However, there are some conflicting observations:
- The demonstration on the aforementioned page seems to indicate that using
word-spacing: 120%;
is considered an error. - Upon attempting to apply a percentage-based
word-spacing
in Chrome, it results in an "Invalid property value" error message. - According to the CSSWG documentation, percentages are marked as "N/A".
Does this mean MDN is inaccurate?