CSS word-spacing
The CSS word-spacing
property controls the space between words.
The way word-spacing
works is that it specifies additional space between each word. So a value of zero for example, has no effect (normal spacing applies). Positive values increase the spacing and negative values reduce the spacing.
Also see letter-spacing
for adjusting the space between each letter.
Syntax
Possible Values
normal
- No additional spacing is applied. Computes to zero.
- length
- Specifies extra spacing in addition to the intrinsic inter-word spacing defined by the font. Negative values are OK, but there may be implementation-dependent limits.
- percentage
- Specifies the additional spacing as a percentage of the affected character's advance width (the proper distance between the glyph's initial pen position and the next glyph's initial pen position).
In addition, all CSS properties also accept the following CSS-wide keyword values as the sole component of their property value:
initial
- Represents the value specified as the property's initial value.
inherit
- Represents the computed value of the property on the element's parent.
unset
- This value acts as either
inherit
orinitial
, depending on whether the property is inherited or not. In other words, it sets all properties to their parent value if they are inheritable or to their initial value if not inheritable.
General Information
- Initial Value
normal
- Applies To
- All elements
- Inherited?
- Yes
- Media
- Visual
- Animatable
- Yes (see example)
Example Code
Official Specifications
- CSS Text Module Level 3 (W3C Last Call Working Draft 10 October 2013)
- CSS Level 2.1 (W3C Recommendation 07 June 2011)
- CSS Level 1 (W3C Recommendation 17 Dec 1996)