使用表条带化的Bootstrap类,表中的每隔一行具有等于#F9F9F9的背景颜色。如何更改此颜色?
解决方法
.table-striped > tbody > tr:nth-child(2n+1) > td,.table-striped > tbody > tr:nth-child(2n+1) > th { background-color: red; }
在bootstrap.css中更改此行或者可以使用(奇数)或(偶数)而不是(2n 1)
.table-striped > tbody > tr:nth-child(2n+1) > td,.table-striped > tbody > tr:nth-child(2n+1) > th { background-color: red; }
在bootstrap.css中更改此行或者可以使用(奇数)或(偶数)而不是(2n 1)