我正在尝试使用下面的 CSS 更改数据表中行的颜色。
table.dataTable tr.odd { background-color: #E2E4FF; }
table.dataTable tr.even { background-color: white; }
此更改似乎不会影响数据表中的第一列,我可以在其他列中看到新颜色。
有人可以让我知道这个问题的原因吗?
我正在尝试使用下面的 CSS 更改数据表中行的颜色。
table.dataTable tr.odd { background-color: #E2E4FF; }
table.dataTable tr.even { background-color: white; }
此更改似乎不会影响数据表中的第一列,我可以在其他列中看到新颜色。
有人可以让我知道这个问题的原因吗?
通过使用下面的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; }