HTML | <th> Atributo bgcolor

El atributo HTML <th> bgcolor se utiliza para especificar el color de fondo de una celda de encabezado de tabla . No es compatible con HTML 5.

Sintaxis:

<th 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 th bgcolor Attribute
  </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML th bgcolor Attribute</h2>
  
    <table width="500" border="1">
        <tr>
            <th bgcolor="green">Name</th>
            <th bgcolor="yellow">Expenses</th>
        </tr>
  
        <tr>
            <td>BITTU</td>
            <td>2500.00</td>
        </tr>
  
        <tr>
            <td>RAKESH</td>
            <td>1400.00</td>
        </tr>
    </table>
</body>
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con el atributo HTML <th> bgcolor se enumeran a continuación:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Safari
  • Ópera

Publicación traducida automáticamente

Artículo escrito por jit_t 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 *