生命之风的低语
Whispers in the Wind of Life.

buildadmin定义原生el-table表格边框样式

秀秀 发布于 2024-7-22 17:11    59 次阅读
<style scoped lang="scss">

:deep(.el-table){
    border: none;
}
:deep(.el-table--border .el-table__inner-wrapper){
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-left: 1px;
}
:deep(.el-table th.el-table__cell.is-leaf){
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
:deep(.el-table td.el-table__cell){
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
:deep(.el-table th.el-table__cell){
    background: #f5f7fa;
}  background: #f5f7fa;

</style>