0
How give another color to your table ?
For example: if I want my table to have a black color and my writings are white
2 Answers
+ 2
<table style="background-color:black; color:white"></table>
+ 2
// or CSS
table {
background-color: black;
color: white;
}