解决element-ui的表格设置固定栏后,行边框线右面覆盖表格边框线的bug
全局修改
.el-table__row td:not(.is-hidden):last-child {
right: -1px !important;
}
局部修改
/注意deep两侧都要有空格/
.current_page_classname /deep/ .el-table__row{
td:not(.is-hidden):last-child{
right:-1px;}
}
解决element-ui的表格设置固定栏后,行边框线右面覆盖表格边框线的bug
全局修改
.el-table__row td:not(.is-hidden):last-child {
right: -1px !important;
}
局部修改
/注意deep两侧都要有空格/
.current_page_classname /deep/ .el-table__row{
td:not(.is-hidden):last-child{
right:-1px;}
}