Html Table Background Tutorial

HTML table background can be set with methods below;


HTML Table Background Color

Html table background color can be set with bgcolor.
In the html table background color sample we set table's background color yellow.


Html table background color code

<table bgcolor="blue">
<tr>
<td>This is my blue table</td>
</tr>
</table>
HTML table background color output
This is my blue color table

Html table background multi color

<table>
<tr bgcolor="yellow">
<td>This is 1. data cell</td>
<td>This is 2. data cell</td>
</tr>
<tr bgcolor="green">
<td>This is 3. data cell</td>
<td>This is 4. data cell</td>
</tr>
</table>
HTML Table Output
This is 3. data cell
This is 1. data cell This is 2. data cell
This is 4. data cell


HTML Table Background Image

Html table background image can be set with background.
In the html table background image sample we set table's background image.


Html table background image code

<table background="image.jpg">
<tr>
<td>This table has background image</td>
</tr>
</table>
HTML table background image output
This table has background image