HTMLのcolタグ
- 24-07-2022
- Trung Minh
- 0 Comments
<col>タグは、<colgroup>要素の各列の属性を指定します。
<col>タグは、各セルと行を繰り返す代わりに、列全体にスタイルを適用する場合に特に便利です。
<col>.tagの使用方法
たとえば、<col>タグを使用して列に色を付けます。
<table> <colgroup> <col span="1" 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> <tr> <td>5869207</td> <td>My first CSS</td> <td>$49</td> </tr> </table>
<col>.tagの属性
<col>タグは、HTMLのすべてのグローバル属性で提供されます。