如何从Bootstrap中的内部表中删除条带属性?

时间:2017-07-24 13:05:37

标签: css html-table bootstrap-4

我在其中一个表中使用了.table-striped类。不幸的是,我在这个表中使用了更多的表,这些表也变成了条带。

如何使内部表不被条带化?

1 个答案:

答案 0 :(得分:2)

为什么不像.table-striped那样创建新的样式并使用直接子选择器[>] [MDN链接] 1,因此它只选择立即tr和不是表中的所有tr个孩子?

.table-striped__immediate-only > tbody > tr:nth-of-type(odd) {
        background-color: rgba(0,0,0,.05);
}