| dt | NN 6 IE 4 DOM 1 |
|
The dt object reflects the dt element. |
|
| HTML Equivalent | |
<dt> |
|
| Object Model Reference | |
[window.]document.getElementById("elementID")
|
|
| Object-Specific Properties | |
noWrap |
|
| Object-Specific Methods | |
None. |
|
| Object-Specific Event Handler Properties | |
None. |
|
| noWrap | NN n/a IE 4 DOM n/a |
| Read/Write | |
|
Specifies whether the browser should render the element as wide as is necessary to display a line of nonbreaking text on one line. Abuse of this attribute can force the user into a great deal of inconvenient horizontal scrolling of the page to view all of the content. |
|
| Example | |
document.getElementById("wideItem").noWrap = "true";
|
|
| Value | |
Boolean value: true | false. |
|
| Default | |
false |
|