HBCMS更多的中文手册参考:

word-wrap Attribute | wordWrap参数属性

DHTML文档教程

Sets or retrieves whether to break words when the content exceeds the boundaries of its container.

dhtml语法

HTML { word-wrap : sWrap }
Scriptingobject.style.wordWrap [ = sWrap ]

DHTML可能的值

sWrapString that specifies or receives one of the following values.
normalDefault. Content exceeds the boundaries of its container.
break-wordContent wraps to next line, and a word-break occurs when necessary.

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 Microsoft Cascading Style Sheets (CSS) extension 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

this property is read-only for the currentstyle object.

this property applies to elements that have layout. an element has layout when it is absolutely positioned, is a block element, or is an inline element with a specified height or width.

DHTML代码范例

The following example shows how to use the break-word value of the wordWrap property to break one long word into multiple words on multiple lines. This value avoids horizontal scrolling and can be useful for printing. The p element in this example has layout, because its width is set.

<p style="word-wrap:break-word;width:100%;left:0">
LongWordLongWord...LongWordLongWord</P>
This feature requires Microsoft® Internet Explorer 5.5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.

是否符合公共标准

This property is a Microsoft extension to Cascading Style Sheets (CSS) Non-Microsoft link.

Applies To

A, ACRONYM, ADDRESS, APPLET, B, BDO, BIG, BLOCKQUOTE, BODY, BUTTON, CENTER, CITE, CODE, currentStyle, CUSTOM, DD, DEL, DFN, DIR, DIV, DL, DT, EM, EMBED, FIELDSET, FONT, FORM, hn, HR, HTML, I, IMG, INPUT, INPUT type=button, INPUT type=checkbox, INPUT type=file, INPUT type=hidden, INPUT type=image, INPUT type=password, INPUT type=radio, INPUT type=reset, INPUT type=submit, INPUT type=text, INS, ISINDEX, KBD, LABEL, LEGEND, LI, LISTING, MENU, NOBR, OBJECT, OL, OPTION, P, PLAINTEXT, PRE, Q, RT, RUBY, runtimeStyle, S, SAMP, SELECT, SMALL, SPAN, STRIKE, STRONG, style, SUB, SUP, TEXTAREA, TD, TH, TT, U, UL, VAR, XMP

更多语法参考

linebreak, wordbreak, whiteSpace