Tag de grupo HTML
- 24-07-2022
- Trung Minh
- 0 Comments
A tag <colgroup> define um grupo de uma ou mais colunas da tabela para fins de formatação.
Use a tag <colgroup> em conjunto com a tag <col> para formatar colunas.
Como usar a tag <colgroup> .
Por exemplo , use a tag <colgroup> e a tag <col> para formatar a cor das colunas na tabela.
<!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>
Atributo da tag <colgroup> .
A tag <colgroup> é fornecida com todos os Atributos Globais em HTML.