word-spacing :
normal |
length
Compatibility: N6
Version: Level 1 Inherited: Yes
The word-spacing property increases or decreases the width
of the blank (white) space between adjacent words. A positive value
increases the width. A negative value decreases the width.
normal
The normal value is the default. By declaring normal,
you can ensure that any previous declaration will not effect the selected
text.
length
The length value can be in any of the following seven units.
Use the abbreviation.
| Length |
Abbrev. |
| centimeters |
cm |
| ems |
em |
| inches |
in |
| millimeters |
mm |
| picas |
pc |
| pixels |
px |
| points |
pt |
Code:
p { word-spacing: normal; }
p { word-spacing: 1mm; }
p { word-spacing: 2.5em; }
or
<p style="word-spacing: 50px;">
How now purple cow?
</p>
Output:
How now purple cow?
Copyright 1999-2001 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information
|