el-table 鼠标悬浮时背景色改变

案例:

/* css  鼠标悬浮时 */
::v-deep .el-table tbody tr:hover > td {
  background-color: rgb(65, 111, 180) !important;
  color: #ffffff;
}

表格背景色透明

::v-deep .el-table tr {
  /* background-color: #10274c; */
  background-color: transparent;

  color: #fff;
}

表头背景色及字体颜色

::v-deep .el-table th.el-table__cell {
  background-color: #1132aa;
  color: #09ccde;
}

猜你喜欢

转载自blog.csdn.net/CMDN123456/article/details/131800856