Spacing Letters and Words
Another aspect of typography that CSS has picked up on is letter spacing and word spacing, handled by the letter-spacing and word-spacing properties, respectively. Values for each are lengths (see Example 9-8).
Example 9-8. Letter and word spacing
[View full width]
The first paragraph will have 10 pixels between each letter, and the second will have 0.5 ems between each word (see Figure 9-15).
<p style="letter-spacing: 10px;">I married early, and was happy to find in my wife adisposition not uncongenial with my own. </p>
<p style="word-spacing: 0.5em;">Observing my partiality for domestic pets, she lost noopportunity of procuring those of the most agreeable kind. We had birds, gold fish, a fine
dog, rabbits, a small monkey, and a cat.</p>
Figure 9-15. Letter and word spacing.
