HTMLcolgroupタグ
- 24-07-2022
- Trung Minh
- 0 Comments
<colgroup>タグは、フォーマットの目的で1つ以上のテーブル列のグループを定義します。
<colgroup>タグを<col>タグと組み合わせて使用して、列をフォーマットします。
<colgroup>.tagの使用方法
たとえば、<colgroup>タグと<col>タグを使用して、テーブルの列の色をフォーマットします。
<!DOCTYPE html> <html> <head> <title>Học lập trình miễn phí tại web888.vn</title> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại web888.vn</h1> <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> <tr> <td>5869207</td> <td>My first CSS</td> <td>$49</td> </tr> </table> </body> </html>
<colgroup>の属性.tag
<colgroup>タグは、HTMLのすべてのグローバル属性で提供されます。