Which CSS property adjusts the space between characters in text?
- letter-spacing: 2px;
- word-spacing: 1em;
- text-spacing: 3px;
- character-spacing: 1.5em;
The correct option is letter-spacing: 2px;. This property controls the space between characters in text. The other options are either incorrect or do not exist in CSS.
Loading...