.el-table .el-table__header-wrapper tr th {
background-color: rgb(248, 248, 248) !important;
color: rgb(0, 0, 0);
font-weight: normal;
}
如果你使用了这样的方式修改了全局el-table表头的样式 并且 最后一列设置了 fixed=“right” ,设置了这个属性的表头与其他列背景色或者其他样式出现不同的情况
解决:
header-row-class-name="你想要定义的类名"
给所有的el-table加上这条属性,然后style里定义你的类名,这样整个表头就统一样式了
然后把整个类名全在全局里,方便统一修改
我自己定义的样式
// 设置表头单元格的颜色
.custom-header-row-style th {
background-color: rgb(248, 248, 248) !important;
color: rgb(0, 0, 0);
font-weight: normal;
}