HTML 标签的 nowrap 属性

nowrap 属性规定表头单元格中的内容不换行。


实例

带有 nowrap 属性的表格单元:

  1. <html>
  2. <body>
  3. <p>请适当缩小浏览器窗口,就可以看到该属性的效果:</p>
  4. <p>不带有 nowrap 属性的表格:</p>
  5. <table border="1">
  6. <tr>
  7. <th>美国公司</th>
  8. <th align="right">地址</th>
  9. </tr>
  10. <tr>
  11. <td>Apple, Inc.</td>
  12. <td>加利福尼亚州库珀蒂诺,邮编95014</td>
  13. </tr>
  14. <tr>
  15. <td>Google, Inc.</td>
  16. <td>竞技场公园道山景1600,加利福尼亚州94043</td>
  17. </tr>
  18. </table>
  19. <p>带有 nowrap 属性的表格:</p>
  20. <table border="1">
  21. <tr>
  22. <th>Company in USA</th>
  23. <th nowrap="nowrap">--------------------- 地址 --------------------</th>
  24. </tr>
  25. <tr>
  26. <td>Apple, Inc.</td>
  27. <td>加利福尼亚州库珀蒂诺,邮编95014</td>
  28. </tr>
  29. <tr>
  30. <td>Google, Inc.</td>
  31. <td>竞技场公园道山景1600,加利福尼亚州94043</td>
  32. </tr>
  33. </table>
  34. </body>
  35. </html>

定义和用法

nowrap 属性规定表头单元格中的内容不换行。


浏览器支持

尽管不建议使用 nowrap 属性,但是所有浏览器都支持它。


兼容性注释

在 HTML 4.01 中,不建议使用 th 元素的 nowrap 属性;在 XHTML 1.0 Strict DTD 中,不支持 th 元素的 nowrap 属性。


语法

  1. <th nowrap="value">
属性值
描述
nowrap 规定表头单元格中的内容不换行。