+ 1

I want to change the color of colum text in html table

When i am trying change text color in colum text its not working while working with html.

14th Jul 2019, 2:16 PM
Niranjan Vasagiri
Niranjan Vasagiri - avatar
6 Answers
+ 2
Thank you Taste for the suggestion I go through it
14th Jul 2019, 3:06 PM
Niranjan Vasagiri
Niranjan Vasagiri - avatar
+ 1
where's the code ?
14th Jul 2019, 2:32 PM
Taste
Taste - avatar
+ 1
Niranjan Vasagiri font tag is not supported in HTML5. Use CSS instead. For now the below code will work fine <html> <head> <title>Table Tages</title> </head> <body> <table> <tr> <td bgcolor="skyblue" width="100%"> <font color="white">Header</font> </td> </tr> </table> </body> </html> https://www.sololearn.com/Course/CSS/?ref=app
14th Jul 2019, 2:58 PM
deeyae
deeyae - avatar
0
<html> <head> <title> Table Tages</title></head> <body> <font color="white" face="arial"> <table> <tr> <td bgcolor="skyblue" width="100%">Header</td> </tr> </table> </font> </body> </html>
14th Jul 2019, 2:41 PM
Niranjan Vasagiri
Niranjan Vasagiri - avatar
0
you can also go all out css <table style="color: white"> ... <td style="background-color: skyblue">
14th Jul 2019, 3:03 PM
Taste
Taste - avatar
0
Thank you adithya
14th Jul 2019, 3:03 PM
Niranjan Vasagiri
Niranjan Vasagiri - avatar