<td nowrap>disables text wrapping</td>
| Attribute | Value | Explanation |
|---|---|---|
| nowrap | nowrap | disables text wrapping (HTML : nowrap | XHTML : nowrap="nowrap") |
The use of this attribute is deprecated. (Use CSS instead)
Use CSS instead of deprecated HTML. Please see the "Related Document" for details on CSS.
<table border="1" width="500">
<tr>
<td nowrap>some text some text some text some text</td>
<td>some text some text some text some text</td>
</tr>
</table>
| some text some text some text some text | some text some text some text some text |