HTML < th > rowspan 属性,定义表头单元格应该横跨的行数

 2022-06-21    478  

HTML <th> rowspan 属性

HTML <th> 标签

HTML < th > rowspan 属性,定义表头单元格应该横跨的行数

实例

下面的 HTML 表格中包含一个横跨三行的表头单元格:

<table border="1">
  <tr>
    <th>Month</th>
    <th>Savings</th>
    <th rowspan="3">Savings for holiday!</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>

定义和用法

rowspan 属性定义表头单元格应该横跨的行数。

HTML 4.01 与 HTML5之间的差异

无。

语法

<th rowspan="number">

属性值

描述
number规定表头单元格应该横跨的行数。注意: rowspan="0"   告知浏览器使单元格横跨到表格组件中的最后一个行(thead、tbody 或 tfoot)。


  •  标签:  
  • html
  •  

原文链接:https://77isp.com/post/1407.html

=========================================

https://77isp.com/ 为 “云服务器技术网” 唯一官方服务平台,请勿相信其他任何渠道。