سمة امتداد HTML


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

تحدد السمة spanعدد الأعمدة التي يجب أن <col>يمتدها <colgroup>العنصر.


ينطبق على

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

عناصر يصف
<col> امتداد
<colgroup> امتداد

أمثلة

مثال العمود

هنا ، يجب أن يكون للعمودين الأولين لون خلفية باللون الأحمر:

<table>
  <colgroup>
    <col span="2" style="background-color:red">
    <col style="background-color:yellow">
  </colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
</table>

مثال كولجروب

اضبط لون الخلفية لأول عمودين باستخدام سمة الامتداد <colgroup>:

<table>
  <colgroup span="2" style="background:red"></colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
  <tr>
    <td>5869207</td>
    <td>My first CSS</td>
    <td>$49</td>
  </tr>
</table>

دعم المتصفح

تحتوي spanالسمة على دعم المتصفح التالي لكل عنصر:

Element
col Yes Yes Yes Yes Yes
colgroup Yes Yes Yes Yes Yes