HTML <td> 标签的 nowrap 属性

HTML <td> 标签的 nowrap 属性
nowrap 属性规定表格单元格中的内容不换行。实例
带有 nowrap 属性的表格单元:
<table border="1">
<tr>
<th>Poem</th>
<th>Poem</th>
</tr>
<tr>
<td nowrap="nowrap">Never increase, beyond what is necessary, the
number of entities required to explain anything</td>
<td>Never increase, beyond what is necessary, the number of entities
required to explain anything</td>
</tr>
</table>
原文地址:https://www.cnblogs.com/qiuh/p/3013923.html