小编典典

引导表带条纹:如何更改条纹背景颜色?

css

使用Bootstrap类时table-striped,表中的其他每一行的背景色均等于#F9F9F9。如何改变这种颜色?


阅读 323

收藏
2020-05-16

共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)

2020-05-16