当前位置: 首页 > 工具软件 > Table Hover > 使用案例 >

element 表格el-table改变hover背景颜色(fixed)

詹唯
2023-12-01
  1. 表格中没用fixed
.el-table tbody tr:hover>td {
 	background: #171F34 !important;
}
  1. 表格中使用了fixed
.el-table__body .el-table__row.hover-row td{
  background-color: #171F34 !important;
}

注意: 以上修改均在<style lang="less"></style>中,不可添加scoped,即<style lang="less" scoped></style>

 类似资料: