The letter-spacing property change the width of space between characters in a text.
Example of Code
<style>
.example-CSS-Letter-Spacing-paragraph{
letter-spacing: 5px;
}
</style>
<p class="example-CSS-Letter-Spacing-paragraph">This text has letter spacing applied</p>
Output
This text has letter spacing applied
