Antd 修改 a-table 悬浮颜色、表头背景色

修改表头颜色代码

.ant-table-thead > tr >th{
 
color: #749dee  !important;    
 background: rgb(153, 211, 221) !important;

}

修改悬浮颜色

  .ant-table-fixed .ant-table-row-hover,.ant-table-row-hover>td{
    background-color: transparent !important;
  }

你可能感兴趣的:(前端,html,css)