Properties
CSS
letter-spacing
The letter-spacing property specifies spacing behavior between text characters.
letter-spacing: normal | <length> | inherit
| Initial: | normal |
| Applies To: | all elements |
| Inherited: | yes |
| Percentages: | NA |
| Media: | visual |
Values
letter-spacing: value;
| Value: | Description: |
| inherit | Takes the same computed value as the property for the element's parent |
| length | Default spacing addition/subtraction |
| normal | Default spacing |
DOM
[window.]document.getElementById("element-id").style.letterSpacing = "letter-spacing";
