HTML | <tbody> atributo bgcolor

El atributo HTML tbody bgcolor se utiliza para especificar el color de fondo del cuerpo de una tabla (tbody). No es compatible con HTML 5.

Sintaxis:

<tbody 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)” .

Ejemplos:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML tbody bgcolor Attribute 
    </title> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
  
    <h2>HTML tbody bgcolor Attribute</h2> 
  
    <table border="1"
        width="500"> 
        <thead> 
            <tr> 
                <th>NAME</th> 
                <th>AGE</th> 
                <th>BRANCH</th> 
            </tr> 
        </thead> 
  
        <tbody align="center" bgcolor="red"> 
            <tr> 
                <td>BITTU</td> 
                <td>22</td> 
                <td>CSE</td> 
            </tr> 
        </tbody> 
    </table> 
</body>
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con el atributo HTML <tbody> 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *