Thuộc tính HTML <th> rowspan

❮ Thẻ HTML <th>

Thí dụ

Bảng HTML có ô tiêu đề kéo dài ba hàng:

<table>
  <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>

Thêm các ví dụ "Hãy tự mình thử" bên dưới.


Định nghĩa và Cách sử dụng

Thuộc rowspantính xác định số hàng mà một ô tiêu đề sẽ kéo dài.


Hỗ trợ trình duyệt

Attribute
rowspan Yes Yes Yes Yes Yes


Cú pháp

<th rowspan="number">

Giá trị thuộc tính

Value Description
number Sets the number of rows a header cell should span. Note: rowspan="0" tells the browser to span the cell to the last row of the table section (thead, tbody, or tfoot)

Các ví dụ khác

Thí dụ

Sử dụng rowspan = "0" (hoạt động trong Chrome, Firefox và Opera):

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

❮ Thẻ HTML <th>