word-spacing

word-spacing
CSS word-spacing Property
The CSS word-spacing property is used to specify the amount of space that your text should have between each word. Use this with the letter-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 {
    word-spacing: 0.8em;
}
p.class2 {
    word-spacing: 12px;
}
</style>
<p>Here is some content ...</p>
<p class="class1">Here is some content ...</p>
<p class="class2">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 "word-spacing"

Post a Comment