覆盖el-table::before的background样式就行: :}
}#el-pagin >>> *{font-size:12px; }.el-table >>> th.gutter{display:table-cell !important; }#sqTable >>> thead .el-table-column--selection{border-left:1px solid #c0c4cc; }#sqTable >>> tbody .el-table-column--selection{border-left:1px solid #c0c4cc; }#sqTable >>> tbody td{...
去边框: 给el-table绑定class=“customer-table” 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 .customer-table th { border: none; } .customer-table td, .customer-table th.is-leaf { border: none; } .el-table--...
加下⾯样式可以去掉最下边的边框线 .el-table__row > td { border: none;} .el-table::before { height: 0px;} 样式都是需要灵活运⽤的,以实现⾃⼰的业务需求。下⾯⽤到id选择器都是我⾃⼰加的,类选择器是elementUI⾃带的 <style scoped > .el-table >>> th { background-color:...
element-UIel-table样式(去边框和滚动条样式)去边框:给el-table绑定class=“customer-table”.customer-table th { border: none;} .customer-table td,.customer-table th.is-leaf { border: none;} .el-table--border,.el-table--group { border: none;} .customer-table thead tr th.is-leaf { b...