Home | Top | Website design | JavaScript Editor JavaScript EditorGet Advanced
JavaScript and Ajax Editor,
Validator and Debugger!

1st JavaScript Editor.


word-spacing Attribute | wordSpacing Property

Sets or retrieves the amount of additional space between words in the object .

This property now applies to the currentStyle element.

Syntax

HTML Scripting
{ word-spacing : sSpacing }
object.style.wordSpacing ( v ) [ = sSpacing ]

Possible Values

sSpacing Variant that specifies or receives one of the following values.
normal Default. Default spacing.
length Floating-point  followed by an absolute units designator ( cm , mm , in , pt , pc , or px ) or a relative units designator ( em or ex ). For more information about the supported length units, see CSS Length Units Reference .

The property is read/write for all objects except the following, for which it is read-only: currentStyle . The property has a default value of normal . The Cascading Style Sheets (CSS) attribute is inherited.

Expressions can be used in place of the preceding value(s), as of Microsoft® Internet Explorer 5. For more information, see About Dynamic Properties .

Remarks

The wordSpacing property is available on Macintosh beginning with Internet Explorer 4.01. It is available for other platforms beginning with Internet Explorer 6.

This attribute adds the specified spacing after each word. Justification can influence word spacing.

The length value indicates an addition to the default space between words. Negative values are permitted.

Example

The following example shows how to use the word-spacing attribute and the wordSpacing property to increase the amount of space between words in a span .

 

<STYLE>
SPAN.spacing{ word-spacing : 10;}
</STYLE>
<SCRIPT>
function fnChangeSpace()
{ oSpan.style. wordSpacing = oSelSpace.options[oSelSpace.selectedIndex].text; }
</SCRIPT>
<SELECT ID = "oSelSpace" onchange = "fnChangeSpace()">
<OPTION>10 <OPTION>15 <OPTION>20 </SELECT>
<SPAN ID = "oSpan" CLASS = "spacing"> The quick brown fox jumped over the lazy dog. </SPAN>

Standards Information

This property is defined in Cascading Style Sheets (CSS), Level 1 (CSS1) .

Applies To

Platform Version
Win32: 6
Mac: 4.01
 
A , ADDRESS , B , BIG , BLOCKQUOTE , BODY , BUTTON , CAPTION , CENTER , CITE , CODE , COL , COLGROUP , currentStyle , CUSTOM , DD , DFN , DIR , DIV , DL , DT , EM , FIELDSET , FORM , hn , HTML , I , IMG , INPUT type=button , INPUT type=checkbox , INPUT type=file , INPUT type=image , INPUT type=password , INPUT type=radio , INPUT type=reset , INPUT type=submit , INPUT type=text , ISINDEX , KBD , LABEL , LEGEND , LI , LISTING , MARQUEE , MENU , OL , P , PLAINTEXT , PRE , runtimeStyle , S , SAMP , SELECT , SMALL , SPAN , STRIKE , STRONG , style , SUB , SUP , TABLE , TBODY , TD , TEXTAREA , TFOOT , TH , THEAD , TR , TT , U , UL , VAR , XMP
Home | Top | Website design | JavaScript Editor JavaScript EditorGet Advanced
JavaScript and Ajax Editor,
Validator and Debugger!

1st JavaScript Editor.