添加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;} }