The word-spacing property defines the default amount of space between words. This can be impacted by justification and other issues.
word-spacing: normal | <length> | inherit
- normal
The normal inter-word space defined by the user agent. - <length>
An additional amount of space between words, including the normal amount. - inherit
The element should have the same word-spacing setting as the parent.
normal
All elements.
This property is inherited.
1em spacing
<p style="word-spacing : 1em;">
The words in this paragraph should have at least 1em between them.
</p>
- A word is typically defined as a series of characters surrounded by whitespace. But some browsers may define this differently.
- Negative values are permitted and the browser will display these by shrinking the space between words.

