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

HTML <col> span Attribute

<HTML <col>タグ

ここで、最初の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>
»それを自分で試してみてください

定義と使用法

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


ブラウザのサポート

属性
span はい はい はい はい はい

HTML 4.01とHTML5の違い

なし。


構文

<col span="number">

属性値

説明
number 列数を設定します<col>要素が及ぶべきを

<HTML <col>タグ