Quote:
Originally Posted by kovidgoyal
Just add the style
letter-spacing: 1em
|
or even "letter-spacing: 5em"
eg
Code:
CSS
span.wide {letter-spacing: 5em}
<p>This is an example of a <span class="wide">expanded</span> word.</p>
results in:
Code:
This is an example of an e x p a n d e d word.