0
I need to know how to apply table background color using html
4 Answers
0
ou i forgot /tr should be before /table.
and yes, attribute bgcolor is possible to use also in <tr> and <table>. i just made in code playground but dont know how to show the code to you.
0
I didn't get that
pls write it as if you want.to apply it
0
well you have a table (white) and on place where you want a background color you will put attribute bgcolor. so <table bgcolor = "red"> will make your whole table red. try to find a code table color made by me and you will see how it looks.
- 1
You have something like this:
table
tr
td
td
/table
so you use attribute bgcolor in td:
td bgcolor ="red"
but now i wonder if it is possible to use it also in tr or table itself to make background of all table.