nowrap 属性规定表格单元格中的内容不换行。html
尽管不同意使用 nowrap 属性,可是全部浏览器都支持它。浏览器
在 HTML 4.01 中,不同意使用 td 元素的 nowrap 属性;在 XHTML 1.0 Strict DTD 中,不支持 td 元素的 nowrap 属性。ui
请使用 CSS 代替。spa
CSS 语法:<td style="white-space: nowrap">code
<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>