Hello, does anyone know how to change table background color in CSS external file?
table in CSS
You can do this so:
and HTML code
| Code: |
|
#yourtable { background-image:url(images/bg.jbg); background-repeat:no-repeat; } |
and HTML code
| Code: |
|
<table id="yourtable"> <tr><td>TEXTTEXTTEXT</td><td>TEXTTEXTTEXT</td></tr></table> |
If you prefer not to use images try this:
CSS:
HTML:
CSS:
| Code: |
|
table.yourtable th { background-color: #eee;} table.yourtable td {background-color: #efe;} |
HTML:
| Code: |
|
<table class="yourtable"> <tr><th>Heading 1</th><th>Heading 2</th></tr> <tr><td>Data 1</td><td>Data 2</td></tr> </table> |
