0
Can't gave color to table
hey community, First, I have tried to give color table as you see. after I noticed can t do it, tried to gave color data with <p> I think understanding this point is very important to me for catch basic HTML if you can help I would glad. code: <table color="red" border="2"> <tr color="red"> <td color="red"> <p color="red"> red </p> </td> <td>Blue</td> <td>Green</td> </tr> <tr> <td><br /></td> <td colspan="2"><br /></td> </tr> </table>
5 Answers
+ 17
<table border="2" style=color:blue;background:yellow;border-color:green>
<tr>
<td style="color:red"> hgfyhv </td>
<td>Blue</td>
<td>Green</td>
</tr>
<tr>
<td><br /></td>
<td colspan="2"><br /></td>
</tr>
</table>
+ 19
......... style=color:red .......
+ 1
thank you very much. its worked for data but as you can see table is still black. i tried to add "style" to table also but couldnt change table's color
<table border="2">
<tr>
<td style="color:red"> hgfyhv </td>
<td>Blue</td>
<td>Green</td>
</tr>
<tr>
<td><br /></td>
<td colspan="2"><br /></td>
</tr>
</table>
+ 1
@valentineHacker thhhhaaaannnnkkkkkssss