Horje

How to add background-color to a table (with CSS) o HTML <table> Tag

background-color to a table (with CSS)

index.html
Example: HTML
 <table style="background-color:#00FF00">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table> 

Output should be:

How to add background-color to a table (with CSS) o HTML <table> Tag




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin