# Element-UI笔记 ## 重写样式 - 重写el-table背景 表格背景透明, 便于定制整体背景样式 ``` scss .main-table .el-table, .el-table__expanded-cell { background-color: transparent; border: none; } .main-table .el-table tr { background-color: transparent !important; border: none; } .main-table .el-table--enable-row-transition .el-table__header td, .el-table .cell { background-color: transparent; } .main-table .el-table--enable-row-transition .el-table__body td, .el-table .cell { background-color: transparent; } ``` -