letter-spacing

letter-spacing
CSS letter-spacing Property
The CSS letter-spacing property is used to specify the amount of space that your text should have between each letter. Use this with the word-spacing and line-height properties to really fine tune your font and text rendering for better readability.
CSS CODE EXAMPLE
<style type="text/css">
p.class1 {
    letter-spacing: 0.3em;
}
p.class2 {
    letter-spacing: 4px;
}
</style>
<p class="class1">Here is some content ...</p>
<p class="class2">Here is some content ...</p>
<p>Here is some content ...</p>
 
Here is some content ...
Here is some content ...
Here is some content ...

Possible Values:

pixel space •• em space

0 Response to "letter-spacing"

Post a Comment