+ 1
How do you change text color inside of a table?
2 ответов
+ 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;
}
+ 2
Thx