Example
Set the letter spacing for <h1>, <h2>, and <b> elements:
h1 {
letter-spacing: 3px;
}
h2 {
letter-spacing: 2px;
}
b {
letter-spacing:
-1px;
}
Try it Yourself »
Definition letter-spacing
The letter-spacing property increases or decreases the space between characters in a text.
| Default value: | normal |
|---|---|
| Inherited: | yes |
| Animatable: | yes. Read about animatable Try it |
| Version: | CSS1 |
| JavaScript syntax: | object.style.letterSpacing="3px" Try it |
Browser Support letter-spacing
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| letter-spacing | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
CSS Syntax letter-spacing
letter-spacing: normal|length|initial|inherit;
Property Values letter-spacing
| Value | Description | Demo |
|---|---|---|
| normal | Defines normal space between characters. This is default | Demo ❯ |
| length | Defines a length that is used as the space between characters (negative values are also allowed). Read about length units | Demo ❯ |
| initial | Sets this property to its default value. Read about initial | |
| inherit | Inherits this property from its parent element. Read about inherit |
Related Pages letter-spacing
CSS tutorial: CSS Text Spacing
HTML DOM reference: letterSpacing property