我正在尝试使用以下CSS更改数据表中行的颜色。
table.dataTable tr.odd { background-color: #E2E4FF; }
table.dataTable tr.even { background-color: white; }
此更改似乎不会影响数据表中的第一列,我可以在其他列中看到新颜色。
有人可以告诉我这个问题的原因吗?
答案 0 :(得分:15)
使用以下css解决了这个问题。
table.dataTable td.sorting_1{ background-color: white; border:1px lightgrey; }
table.dataTable td{ background-color: white; border:1px lightgrey;}
table.dataTable tr.odd { background-color: white; border:1px lightgrey;}
table.dataTable tr.even{ background-color: white; border:1px lightgrey; }