Letter-spacing is a CSS property used to change the spacing between characters in text. It allows you to adjust the horizontal spacing between characters in a word or sentence.
The value of letter-spacing can be a number or can be set to different values:
Example
HTML
<p>Hello</p>
CSS
p {
letter-spacing: 10px;
}
Result:
Hello