Antd table组件样式去除背景色
在鼠标悬浮时背景色展示在当前项非当前行
.ant-table-tbody > tr > td {
background: rgba(255,255,255,0) !important;
}
.ant-table-tbody > tr >td:hover{
background: rgb(255,255,255) !important;
}
去除鼠标悬浮的背景色
.ant-table-tbody > tr > td {
background: rgba(255,255,255,0) !important;
}
.ant-table-tbody > tr >td:hover{
background: rgba(255,255,255,0) !important;
}
修改表头文字、背景颜色
.ant-table-thead > tr > th{
background: #fff;
border-bottom: none;
}
修改列表文字、背景颜色
.ant-table-tbody > tr > td{
border-bottom: none;
}