antd design中的表格,当鼠标移至该行时,背景色为透明,文字不透明
.DailyCheck .ant-table-tbody > tr:hover > td{
background-color:rgba(116,255,252,0.5) ! important;
}
这样写背景,文字都会透明
antd design中的表格,当鼠标移至该行时,背景色为透明,文字不透明
.DailyCheck .ant-table-tbody > tr:hover > td{
background-color:rgba(116,255,252,0.5) ! important;
}
这样写背景,文字都会透明
2 回答870 阅读✓ 已解决
4 回答969 阅读✓ 已解决
2 回答1.4k 阅读✓ 已解决
2 回答1.2k 阅读✓ 已解决
2 回答841 阅读✓ 已解决
2 回答1k 阅读✓ 已解决
2 回答2.6k 阅读
background-color: transparent;
color: #fff;
试一试