+ 1

How do you change text color inside of a table?

7th Jun 2019, 3:22 AM
Rishan [da_coder, semi-active]
Rishan  [da_coder, semi-active] - avatar
2 Respostas
+ 8
As you're still learning HTML 4, You can use the font tag to color the text inside the table. <font color="color_name"> ............................................... </font> An example is given below : https://code.sololearn.com/Wu47WYRCc9nh/?ref=app But font tag is not supported in HTML 5, so you have to use CSS instead. In CSS you can do this by the following method : table { color : color_name; }
7th Jun 2019, 4:40 AM
Nova
Nova - avatar
+ 2
Thx
7th Jun 2019, 4:42 AM
Rishan [da_coder, semi-active]
Rishan  [da_coder, semi-active] - avatar