El atributo HTML <tfoot> bgcolor se utiliza para especificar el color de fondo de un pie de la mesa. No es compatible con HTML 5.
Sintaxis:
<tfoot 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 tfoot bgcolor Attribute </title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML tfoot bgcolor Attribute</h2> <table border="1" width="500"> <tr> <th>NAME</th> <th>AGE</th> <th>SUBJECT</th> </tr> <tr> <td>BITTU</td> <td>22</td> <td>CSE</td> </tr> <tfoot align="center" bgcolor="red"> <tr> <td>Name@123</td> <td>Age@123</td> <td>Branch@123</td> </tr> </tfoot> </table> </body> </html>
Producción :
Navegadores compatibles: los navegadores compatibles con el atributo HTML <tfoot> 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