HTML | atributo bgcolor

El atributo HTML bgcolor se utiliza para establecer el color de fondo de un elemento HTML. Bgcolor es uno de esos atributos que ha quedado obsoleto con la implementación de las hojas de estilo en cascada (ver Fondos CSS).
Sintaxis: 
 

<"tag" bgcolor="Value">

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

Etiquetas compatibles: 
 

Nota: HTML5 no admite el atributo bgcolor. 

Ejemplo: HTML <tabla> atributo bgcolor 
 

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: 
 

Ejemplo: cuerpo HTML Atributo Bgcolor 
 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
    HTML body Bgcolor Attribute
</title>
</head>
 
<!-- body tag starts here -->
 
<body text="green" bgcolor="orange">
    <center>
        <h1>GeeksforGeeks</h1>
        <h2>
        HTML <body> bgcolor Attribute
    </h2>
         
 
 
<p>
        It is a Computer
        Science portal For Geeks
    </p>
 
 
  
    </center>
</body>
<!-- body tag ends here -->
 
</html>

Producción: 
 

Nota: el atributo bgcolor no se admite en HTML5.
Navegadores compatibles: los navegadores compatibles con el atributo bgcolor se enumeran a continuación: 
 

  • Google Chrome
  • explorador de Internet
  • Firefox
  • safari de manzana
  • Ópera

Publicación traducida automáticamente

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