CSS Letter Spacing
The letter-spacing
property in CSS controls the spacing between characters in text. It adjusts the space between individual letters in a text element.
Basic Usage of the letter-spacing
Property
The letter-spacing
property can be defined using various units:
letter-spacing: normal;
: Default behavior where the browser sets the space between letters.letter-spacing: length;
: Specifies the space between letters using specific length values like pixels or em.