在bootstrap表详细信息视图中,每行中都有一个加号图标。我使用一些样式删除了Plus图标。然后它也影响其他表。在其他表中,整个表的第一列也会隐藏。我能否知道解决方案。
.detail-view-table thead > tr > th.detail,
.detail-view-table tbody > tr:not(.detail-view) > td:first-of-type {
display: none;
}
.detail-view-table thead > tr > th:nth-child(2),
.detail-view-table tbody > tr:not(.detail-view) > td:nth-child(2) {
border-left: none!important;
}
答案 0 :(得分:0)
我建议您使用parent child
选择器CSS,您需要为表的父元素声明class
。
例如,如果表位于div
内,则添加名为class
的{{1}}并将其作为父级,然后选择子表。
示例强>
.hide
这样做不会影响其他表,但会影响您想要受影响的表。
这将为您提供所需的信息。 希望这会有所帮助。