在HTML表格中,nowrap是一個屬性,用于指定表格單元格中的文本是否自動換行。
當nowrap屬性設置為nowrap時,表格單元格中的文本將不會自動換行,而是會一直延伸到內容結束或到達單元格的邊界。這意味著文本將在一行中顯示,而不會自動換行到下一行。
示例代碼:
<table>
<tr>
<td nowrap>This is a long text that will not wrap</td>
</tr>
</table>
在上述示例中,設置了nowrap屬性,所以單元格中的文本"This is a long text that will not wrap"將不會自動換行,而是在一行內顯示。