HTML <th> 标签的 nowrap 属性

HTML <tr> 标签HTML <th> 标签

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

 

1. 浏览器支持

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

 

2. 兼容性注释

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

请使用 CSS 代替。

CSS 语法:<th style="white-space: nowrap">

CSS 范例:th 中不换行

 

3. 语法

<th nowrap="value">

属性值

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

 

4. 范例

带有 nowrap 属性的表格单元:

<table border="1">
  <tr>
    <th>Company in USA</th>
    <th nowrap="nowrap">Address</th>
  </tr>
  <tr>
    <td>Apple, Inc.</td>
    <td>1 Infinite Loop Cupertino, CA 95014</td>
  </tr>
  <tr>
    <td>Google, Inc.</td>
    <td>1600 Amphitheatre Parkway Mountain View, CA 94043</td>
  </tr>
</table>

我要试一试

HTML <tr> 标签HTML <th> 标签

HTML <th> 标签的 rowspan 属性:rowspan 属性规定表头单元格可横跨的行数。1. 浏览器支持:所以浏览器都支持 rowspan 属性。没有浏览器支持 rowspan="0",这个值有特殊的意义。(参见属性值表格中的描述)。2. 语法:<th rowspan="value">。