Tag gruppo HTML
- 24-07-2022
- Trung Minh
- 0 Comments
Il tag <colgroup> definisce un gruppo di una o più colonne di tabella a scopo di formattazione.
Usa il tag <colgroup> insieme al tag <col> per formattare le colonne.
Come utilizzare il tag <colgroup>
Ad esempio , usa il tag <colgroup> e il tag <col> per formattare il colore delle colonne nella tabella.
<!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>
Attributo di <colgroup> .tag
Il tag <colgroup> viene fornito con tutti gli attributi globali in HTML.