去掉el-table表格的默认样式,表头颜色,hover的效果

倾然丶 夕夏残阳落幕 提交于 2020-12-26 05:44:54
!important不起作用,     scoped  和/deep/使用  在需要改的地方的前边一定要加上  .el-table
<style  scoped>
 /deep/ .el-table th{
    background-color: white ;
}

/* 表尾 */
/deep/ .el-table .el-table__footer-wrapper tbody td {
    background-color: white;
}
/* 表头 */
/deep/  .el-table__header-wrapper thead div{
     background-color: white ;
 
/* hover效果 */
/deep/ .el-table tbody tr:hover>td { 
    background-color:#ffffff
}
<style>
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!