CSS letter-spacing property
Usage
Used to increase or reduce the gap between letters of a word.
Values
- normal - default
- [length] - specifies the size of the gap between letters. Values are relative to the default spacing and can be positive or negative
Example
Code:
p {
letter-spacing: 3px;
}
p {
letter-spacing: -0.5em;
}