Demo
Summary
To change the space between the letters in an element’s text using CSS, use the letter-spacing
property:
selector {
letter-spacing: 1px;
}
Details
The letter-spacing
property takes a length value (like 1px or 1em). A positive value increases the space between letters. A negative value decreases the space between letters.
Exercises
First, recreate the CSS code from the Demo section in your CSS file. Then try changing the value for the property. Try using positive and negative values.