Anybody know how to change the color of the text inside a table ....is it through css. or html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Anybody know how to change the color of the text inside a table ....is it through css. or html

3rd Sep 2017, 11:46 AM
Stephen Asmah
Stephen Asmah - avatar
2 Answers
+ 4
I recommend you use CSS for styling anything in your code. Here's an example of how you can style it. Example (CSS): td { color:blue; } /*Will style all data cell text blue*/ th { color:red; } /*Will style all header cell text red*/
3rd Sep 2017, 11:59 AM
Ghauth Christians
Ghauth Christians - avatar
+ 4
<table> <tr> <td>test with longish string<br/> over two lines<td> <td><span class="bg" >test</span></td> </tr> <tr> <td>test with longish string<br/> over two lines<td> <td>test with longish string<br/> over two lines<td> </tr> </table> <table width="100" height="100" border="2"> <tbody> <tr> <td bgcolor='red'>This is Red</td> </tr> <tr> <td bgcolor='blue'>This is Blue</td> </tr> </tbody> </table>
3rd Sep 2017, 12:01 PM
GAWEN STEASY
GAWEN STEASY - avatar