HTML <th> satır aralığı Özelliği

❮ HTML <th> etiketi

Örnek

Üç satıra yayılan bir başlık hücresine sahip bir HTML tablosu:

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

Aşağıda daha fazla "Kendiniz Deneyin" örnekleri.


Tanım ve Kullanım

Nitelik rowspan, bir başlık hücresinin kapsaması gereken satır sayısını tanımlar.


Tarayıcı Desteği

Attribute
rowspan Yes Yes Yes Yes Yes


Sözdizimi

<th rowspan="number">

Özellik Değerleri

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)

Daha fazla örnek

Örnek

Rowspan="0" kullanarak (Chrome, Firefox ve Opera'da çalışır):

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

❮ HTML <th> etiketi