我在其中一个表中使用了.table-striped
类。不幸的是,我在这个表中使用了更多的表,这些表也变成了条带。
如何使内部表不被条带化?
答案 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);
}