element plus table 的 行 hover 如何去除?

问题详情

在这里插入图片描述

去除这个行的hover效果。

解决方法

通过自己覆写 .el-table__row 的 hover 样式

.el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell {
    
    
  background-color: none!important;
}

前端 - element plus table 的 行 hover 如何去除? - SegmentFault 思否

猜你喜欢

转载自blog.csdn.net/qq_34626094/article/details/129855379