Why Table Bgcolor Is No Longer Valid Code (And What To ... - HTML

Skip to content HTML / Create An HTML Table Quickly & Easily With Our Code Example / Why Table Bgcolor Is No Longer Valid Code (And What To Use Instead)Deprecated in HTML5. Do not use.Disclosure: Your support helps keep the site running! We earn a referral fee for some of the services we recommend on this page. Learn moreAttribute ofCreate An HTML Table Quickly & Easily With Our Code ExampleWhat does Why Table Bgcolor Is No Longer Valid Code (And What To Use Instead) do?Was used to set the background color of an HTML table. This attribute has been deprecated. Use CSS to style tables.

Code Example

<table bgcolor="#ccccff"> <tr><td>First column</td><td>Second column</td><td>Third column</td></tr> <tr><td>First column</td><td>Second column</td><td>Third column</td></tr> <tr><td>First column</td><td>Second column</td><td>Third column</td></tr> </table>
First columnSecond columnThird column
First columnSecond columnThird column
First columnSecond columnThird column

Styling Table Background Colors

The bgcolor was once the correct way to specify the color to be applied to the background of a table. However, this attribute has been deprecated in favor or using CSS to style tables. The attribute does still work in most browsers and can accept color names, hex color codes, and rgb values. To set the background of a table with CSS, use the background-color property instead of the bgcolor HTML attribute.

<style> table.example-table { background-color: #ccccff; } </style> <table class="example-table"> <tr><td>First column</td><td>Second column</td><td>Third column</td></tr> <tr><td>First column</td><td>Second column</td><td>Third column</td></tr> <tr><td>First column</td><td>Second column</td><td>Third column</td></tr> </table> table.example-table{background-color: #ccccff;}

First columnSecond columnThird column
First columnSecond columnThird column
First columnSecond columnThird column
Adam WoodAdam is a technical writer who specializes in developer documentation and tutorials.

Post navigation

How To Use In HTML<td nowrap>

Search HTML.com

Search for:

Most Popular

  • HTML Img Alt Tags For SEO Best Practice - Search Engines Love Them146 views
  • <var> HTML Tag75 views
  • Input Pattern: Use It To Add Basic Data Validation In HTML516 views
  • Using The HTML Tag To Create Inline Frames: Here's How15 views
  • What Does In HTML: Easy Tutorial With Code Example11 views
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok

Từ khóa » Html Bgcolor Tag