El atributo HTML <tr> bgcolor se utiliza para especificar el color de fondo de una fila de tabla . No es compatible con HTML 5.
Sintaxis:
<tr bgcolor= "color_name | hex_number | rgb_number">
Valores de atributos:
- color_name: Establece el color de fondo usando el nombre del color. Por ejemplo , «rojo» .
- hex_number: Establece el color de fondo usando el código hexadecimal del color. Por ejemplo , “#0000ff” .
- rgb_number: Establece el color de fondo usando el código RGB. Por ejemplo: “ RGB(0, 153, 0)” .
Ejemplo:
<!DOCTYPE html> <html> <head> <title>HTML tr bgcolor Attribute</title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML tr bgcolor Attribute</h2> <table width="500" border="1"> <tr bgcolor="green"> <th>Name</th> <th>Expenses</th> </tr> <tr bgcolor="yellow"> <td>BITTU</td> <td>2500.00</td> </tr> <tr bgcolor="red"> <td>RAKESH</td> <td>1400.00</td> </tr> </table> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo HTML <tr> bgcolor se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera