word-spacing
Expression Studio 3.0
Sets the amount of additional space between words in the object.
The following example shows how to use the word-spacing property to increase the amount of space between words in a span:
<style>
span.spacing{ word-spacing: 10; }
</style>
<script>
function fnChangeSpace(){
ospan.style.word-spacing =
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 jumps over the lazy dog.
</span>
This property is defined in Cascading Style Sheets (CSS), Level 1 (CSS1).
A, ADDRESS, B, BIG, BLOCKQUOTE, BODY, BUTTON, CAPTION, CENTER, CITE, CODE, COL, COLGROUP, CUSTOM, DD, DFN, 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, LI, OL, P, S, SELECT, SPAN, SUB, TABLE, TBODY, TD, TFOOT, TH, THEAD, TR, TT, U, UL, VAR, XMP