سمة rowspan في HTML


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

تحدد السمة rowspanعدد الصفوف التي يجب أن تمتد الخلية إليها.


ينطبق على

يمكن rowspanاستخدام السمة في العناصر التالية:

عناصر يصف
<td> rowspan
<th> rowspan

أمثلة

مثال Td

جدول HTML بخلية جدول تمتد إلى صفين:

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

المثال ال

جدول 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السمة على دعم المتصفح التالي لكل عنصر:

Element
td Yes Yes Yes Yes Yes
th Yes Yes Yes Yes Yes