HTML-Colgroup-Tag
- 24-07-2022
- Trung Minh
- 0 Comments
Das <colgroup>-Tag definiert eine Gruppe von einer oder mehreren Tabellenspalten für Formatierungszwecke.
Verwenden Sie das Tag <colgroup> in Verbindung mit dem Tag <col>, um Spalten zu formatieren.
Verwendung des <colgroup> .-Tags
Verwenden Sie beispielsweise die Tags <colgroup> und <col>, um die Farbe der Spalten in der Tabelle zu formatieren.
<!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>
Attribut von <colgroup> .tag
Das <colgroup>-Tag wird mit allen globalen Attributen in HTML bereitgestellt.