CSS中可以通過設(shè)置表格的樣式來更改表格的顏色,以下是一些常見的CSS樣式代碼,可以用于設(shè)置表格的顏色:
1、設(shè)置表格背景顏色:
table { background-color: #f0f0f0; }
2、設(shè)置表格邊框顏色:
table { border-color: #000000; }
3、設(shè)置表格文字顏色:
table { color: #000000; }
4、設(shè)置表格鼠標(biāo)懸停顏色:
table { background-color: #e0e0e0; }
5、設(shè)置表格頭部顏色:
table thead { background-color: #f5f5f5; }
6、設(shè)置表格行顏色:
table tr { background-color: #ffffff; }
7、設(shè)置表格列顏色:
table td { color: #333333; }
8、設(shè)置表格鼠標(biāo)懸停行顏色:
table tr:hover { background-color: #e5e5e5; }
9、設(shè)置表格頭部字體顏色:
table thead th { color: #333333; }
10、設(shè)置表格行字體顏色:
```css
table tr {
color: #333333;
}
```