我已经为我的一张桌子使用了.table-striped
类。不幸的是,我在该表中使用了更多表,该表也变得条带化。
如何使内部表不条带化?
最佳答案
为什么不创建类似于.table-striped
的新样式并使用直接子选择器[>
] [MDN链接] 1,以便仅选择表中的直接tr
而不选择表中的所有tr
子?
.table-striped__immediate-only > tbody > tr:nth-of-type(odd) {
background-color: rgba(0,0,0,.05);
}
关于css - 如何从Bootstrap的内部表中删除Striped属性?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45281442/