<style lang="scss" scoped >
.table-con {
/deep/ .el-table {
position: absolute;
width: 100%;
border: 1px solid #ebeef5;
border-bottom: none;
}
}
</style>
注意:使用/deep/和scoped时,仅需要把父级加上/deep/,如果父级子级都加上了/deep/,在火狐浏览器会不起样式作用
<style lang="scss" scoped >
.table-con {
/deep/ .el-table {
position: absolute;
width: 100%;
border: 1px solid #ebeef5;
border-bottom: none;
}
}
</style>
注意:使用/deep/和scoped时,仅需要把父级加上/deep/,如果父级子级都加上了/deep/,在火狐浏览器会不起样式作用