Sets or retrieves whether the browser automatically performs wordwrap.
Syntax
HTML | <ELEMENT NOWRAP
... >
|
---|
Scripting | object.noWrap [ = bWrap ] |
---|
Possible Values
bWrap | Boolean that
specifies or receives one of the following values.false | Default. Browser automatically wraps the text. | true | Browser does not wrap the text. |
|
The property is read/write.
The property has a default value of
false.
Remarks
Care should be taken when the noWrap property is used in conjunction with the width attribute of table or td elements.
Wordwrap still occurs in a td element that has its WIDTH attribute set to a value smaller than the unwrapped content of the cell, even if the noWrap property is set to true. Therefore, the WIDTH attribute takes precedence over the noWrap property in this scenario.
If a td element has its noWrap set to true and the WIDTH attribute of its table element is set to a smaller dimension than the rendered content of the td element, wordwrap does not occur. In this case, the noWrap setting takes precedence over the WIDTH attribute.
Standards Information
This property is deprecated in
HTML and
is defined in
World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 .
Applies To