[element-ui] 去掉el-table的hover变色效果

阅读 115

2022-12-21


方法1:此方法适用没有设置固定列时

.el-table tbody tr:hover>td {
background-color: transparent !important;
}

方法2:此方法适用设置了固定列fixed属性后

.el-table__body .el-table__row.hover-row td{
background-color: transparent !important;
cursor: pointer;
}


相关推荐

精彩评论(0)

0 0 举报