HTML | <table> bgcolor Attribute
The HTML <table> bgcolor Attribute is use to specify the background color of a table.
Syntax:
<table bgcolor="color_name | hex_number | rgb_number">
Attribute Values:
- color_name: It sets the text color by using the color name. For example “red”.
- hex_number: It sets the text color by using the color hex code. For example “#0000ff”.
- rgb_number: It sets the text color by using the rgb code. For example: “RGB(0, 153, 0)” .
Note: The <table> bgcolor Attribute is not supported by HTML 5 instead of using this we can use CSS background-color property. .
Example:
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:
Supported Browsers: The browser supported by HTML <table> bgcolor Attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Safari
- Opera
Please Login to comment...