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>