سمة rowspan في HTML

❮ علامة HTML <th>

مثال

جدول HTML بخلية رأس تمتد على ثلاثة صفوف:

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

المزيد من الأمثلة "جربها بنفسك" أدناه.


التعريف والاستخدام

تحدد السمة rowspanعدد الصفوف التي ينبغي لخلية الرأس أن تمتد.


دعم المتصفح

Attribute
rowspan Yes Yes Yes Yes Yes


بناء الجملة

<th rowspan="number">

قيم السمات

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)

مزيد من الأمثلة

مثال

باستخدام rowspan = "0" (يعمل في Chrome و Firefox و 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>

❮ علامة HTML <th>