‎‎ويژگيHTML span

Previous >    <Next  

‎‎كاربرد ويژگيApplies to -‎

‎ويژگي‎span‎ تعداد ستونهائي كه بايد عناصر ‎<col>‎ يا ‎<colgroup>‎‎پوشش دهند، مشخص ميكند .

‎‎كاربرد ويژگيApplies to -‎

‎‎ويژگي فوق فقط براي عناصر در جدول زير بكار گرفته ميشود.

‎‎عنصر ‎‎شــرح
<col> ‎‎ويژگي ستونهائي را كه در عنصر‎<colgroup>‎ هستند، معرفي مي نمايد .
<colgroup> ‎‎يك گروه يك يا چندستوني از جدول را براي فرم دهي معرفي ميكند.

‎‎مثالها

‎‎مثالCol ـ دوستون اول با رنگ قرمز پوشش داده شده است .

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

--(go to editor for change code and run)

‎‎مثالColroup ـ همان مثال اول با عنصر ‎<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> 

--(go to editor for change code and run)

‎‎پشتيباني مرورگرBrowser Support -‎

‎‎وضعيت پشتيباني مرورگرها نسبت به ويژگي فوق وعناصر مرتبط در جدول زير آمده است.

‎‎عنصر Chorome Edge Firefox Safari Opera
‎col‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎
‎colgroup‎ ‎Yes ‎Yes ‎Yes ‎Yes ‎Yes

‎مرجع كامل تگهايHTML
‎مرجع كامل ويژگيهايHTML


Previous >    <Next