CSSword-spacing Property
Example
Specify that the space between words in <p> elements should be 30 pixels:
p {
word-spacing: 30px;
}
Try it Yourself »word-spacing: 30px;
}
Definition and Usage
Theword-spacing property increases or decreases the white space between words.
Note: Negative values are allowed.
| Default value: | normal |
|---|---|
| Inherited: | yes |
| Animatable: | yes.Read aboutanimatableTry it |
| Version: | CSS1 |
| JavaScript syntax: | object.style.wordSpacing="20px"Try it |
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| word-spacing | 1.0 | 6.0 | 1.0 | 1.0 | 3.5 |
CSS Syntax
word-spacing: normal|length|initial|inherit;
Property Values
| Value | Description | Demo |
|---|---|---|
| normal | Defines normal space between words (0.25em) . This is default | Demo ❯ |
| length | Defines an additional space between words (in px, pt, cm, em, etc). Negative values are allowed.Read about length units | Demo ❯ |
| initial | Sets this property to its default value.Read aboutinitial | |
| inherit | Inherits this property from its parent element.Read aboutinherit |
Related Pages
CSS tutorial:CSS Text Spacing
HTML DOM reference:wordSpacing property

