Open In App
Related Articles

HTML bgcolor attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML bgcolor attribute is used to set the background color of an HTML element. Bgcolor is one of those attributes that has become deprecated with the implementation of Cascading Style Sheets (see CSS Backgrounds).

Syntax: 

<"tag" bgcolor="Value">

Attribute Values:

  • color_name: It sets the background color by using the color name. For example “red”.
  • hex_number: It sets the background color by using the color hex code. For example “#0000ff”.
  • rgb_number: It sets the background color by using the RGB code. For example: “RGB(0, 153, 0)” .

Supported tags: 

Note: The bgcolor attribute is not supported by HTML5. 

Example: HTML <table> bgcolor attribute 

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>


Output: 

Example: HTML body Bgcolor Attribute 

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>


Output: 

Note: The bgcolor attribute is not supported in HTML5.

Supported Browsers: The browsers supported by bgcolor attribute are listed below: 

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Apple Safari
  • Opera

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 10 May, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials