添加css代码,若是是修改全局,则到全局样式文件添加css
.el-table__row{ td:not(.is-hidden):last-child{ right:-1px;} }
若是是修改局部,则用样式穿透添加,在当前页面的css文件添加code
/*注意deep两侧都要有空格*/ .current_page_classname /deep/ .el-table__row{ td:not(.is-hidden):last-child{ right:-1px;} }