El atributo HTML <col> bgcolor se utiliza para especificar el color de fondo de un elemento de columna. No es compatible con HTML 5.
Sintaxis:
<col 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 col bgcolor Attribute </title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML col bgcolor Attribute</h2> <table border="1"> <colgroup> <col span="2" bgcolor="green"> <col bgcolor="blue"> </colgroup> <tr> <th>Name</th> <th>Branch</th> <th>Expenses</th> </tr> <tr> <td>BITTU</td> <td>CSE</td> <td>2500.00</td> </tr> <tr> <td>RAKESH</td> <td>ECE</td> <td>1400.00</td> </tr> </table> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo HTML <col> 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