+ 1
How to change the font colour in a table from black to white
3 Respuestas
+ 16
in your css file:
table {color:white;}
+ 7
i understand your question that u want animation
code is below
👇👇
<table>
<th>
<tr>bla bla</tr></th>
<style>
table{ color:black;background:white; animation:color 2s;}
@keyframes color{color:white;background:black;}
you can watch my code because i use animation a lot
+ 3
Use CSS
table{color: white;}
Or
HTML
<table style = "color: white;"></table>
You can also put the CSS into a <style> tag.