HTML 参考手册
HTML <td> nowrap 属性
CSS - 实例:表格单元格中不换行
源代码:
点击运行 »
<html> <body> <table border="1"> <tr> <th>Poem</th> <th>Poem</th> </tr> <tr> <td style="white-space: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> </body> </html>
运行结果:
点击运行 »