最新のWeb開発のチュートリアル
 

HTML span Attribute


定義と使用法

span属性は、列の数を定義<col>/<colgroup>要素が及ぶべきであるが。


に適用されます

span属性は、次の要素で使用することができます。

要素 属性
<col> span
<colgroup> span

コル例

ここで、最初の2つの列は、赤色の背景色を持っている必要があります。

<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

使用して最初の2つの列の背景色を設定し<colgroup> span属性を:

<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属性は、要素ごとに以下のブラウザのサポートを持っています。

素子
col はい はい はい はい はい
colgroup はい はい はい はい はい