The letter-spacing
property adjusts the space between characters in a text.
letter-spacing: normal | value;
.div-1{
letter-spacing: normal;
}
.div-2{
letter-spacing: 10px;
}
normal: sets a normal space between the characters in a text. (Default value)
value: sets the given length value as the space between the characters in a text.