antd选中table不变色
时间: 2023-10-08 17:11:03 浏览: 168
antd Design Table二次封装
要让 Ant Design 的 Table 组件在选中行时不变色,可以使用 CSS 样式来实现。可以通过设置 `!important` 来覆盖默认的样式,例如:
```css
.ant-table-row:hover {
background-color: transparent !important;
}
.ant-table-row-selected {
background-color: transparent !important;
}
```
这样设置后,当鼠标悬浮在表格行上时,不会出现背景色;当选中表格行时,也不会出现背景色。
阅读全文