我想在悬停时突出显示表格行边界。像这样:
的数据
我尝试添加CSS,它的代码是:
.ant-table-tbody>tr.ant-table-row:hover>td, .ant-table-tbody>tr>td.ant-table-cell-row-hover{
background: #fafafa;
color: #091E42
}
.theme-dark .ant-table-tbody>tr.ant-table-row:hover>td, .ant-table-tbody>tr>td.ant-table-cell-row-hover{
background:#242424;
color: #fff;
border: 1px solid #CDD6E0 !important;
}
字符串
但在这里,亮点也出现在列之间:
有没有人可以建议我如何添加CSS?
1条答案
按热度按时间omqzjyyz1#
--color-border: #888;
和--color-border-hover: #fff;
border-top
,仅在最后一行的TD上设置border-bottom
:first-child
和:last-child
TH和TD应该设置左/右边框。tbody tr:hover
上,只需将--color-border:
的值设置为var(--color-border-hover);
个字符