Why can't the white background of element's table come off?

I want to get rid of the white background. I don"t need a background color, but I can"t get rid of one. El-table tr set transparent does not work

May.18,2022
Add class to the attribute

row-class-name, and then style the class.


seems to be because the whole table has a white background, so we should set

together.
.el-table, .el-table__expanded-cell {
    background-color: transparent;
}

el-table th, .el-table tr {
    background-color: transparent;
}
Menu