HTML | <tabla> atributo bgcolor

El atributo HTML <table> bgcolor se utiliza para especificar el color de fondo de una tabla .
Sintaxis: 
 

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

Nota: El atributo <table> bgcolor no es compatible con HTML 5 en lugar de usar esto, podemos usar la propiedad CSS background-color. .
Ejemplo: 
 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML table bgcolor Attribute
    </title>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
 
    <h2>HTML table bgcolor Attribute</h2>
 
    <table border="1"
           bgcolor="green">
        <caption>
          Author Details
      </caption>
 
        <tr>
            <th>NAME</th>
            <th>AGE</th>
            <th>BRANCH</th>
        </tr>
        <tr>
            <td>BITTU</td>
            <td>22</td>
            <td>CSE</td>
        </tr>
        <tr>
            <td>RAM</td>
            <td>21</td>
            <td>ECE</td>
        </tr>
    </table>
</body>
 
</html>

Producción: 
 

Navegadores compatibles: los navegadores compatibles con HTML <table> bgcolor Attribute 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 *