El atributo HTML <colgroup> bgcolor se utiliza para especificar el color de fondo de un elemento colgroup. No es compatible con HTML 5.
Sintaxis:
<colgroup bgcolor= "color_name | hex_number | rgb_number">
Valores de atributos:
- color_name: Establece el color del texto usando el nombre del color. Por ejemplo , «rojo» .
- hex_number: Establece el color del texto usando el código hexadecimal del color. Por ejemplo , “#0000ff” .
- rgb_number: Establece el color del texto usando el código rgb. Por ejemplo: “RGB(0, 153, 0)” .
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML colgroup bgcolor Attribute </title> <style> table { color: white; margin-left: 180px; } td { padding: 10px; } </style> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> HTML ColumnGroup bgcolor Attribute </h2> <table> <colgroup id="myColGroup" span="2" bgcolor="green"> </colgroup> <tr> <th>S.No</th> <th>Title</th> <th>Geek_id</th> </tr> <tr> <td>Geek_1</td> <td>GeekForGeeks</td> <th>Geek_id_1</th> </tr> <tr> <td>Geek_2</td> <td>GeeksForGeeks</td> <th>Geek_id_2</th> </tr> </table> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo HTML <colgroup> bgcolor se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA