CSS Letter Spacing

Similar to word spacing, you can also change the space between letters in a word.
To do this you use the code:

p {letter-spacing: 5px}

This code will make the space between each letter in a word to be 5 pixels.

To change the letter spacing of all p tag with a specific class name, use the code:
p.class {letter-spacing: 5px}, where class is the class name that you've given to some of your paragraphs

To change the letter spacing of all p tag with a specific identifier name, use the code:
p#identifier {letter-spacing: 5px}, where identifier is the identifier name what you've given to one of your paragraph

Next: CSS Aligning Text


Template Design | Elque 2007