2019-11-30

vue文件中style标签上加上scoped,覆写的ElementUI的样式会失效,此时使用

深度作用选择器 /deep/  or  >>>

如果希望scoped样式中的选择器“深入”,即影响子组件

例子:

/deep/ .el-table .red-row {

background: #ffc2c2;

}

or

 .el-table >>> .red-row {

background: #ffc2c2;

}

你可能感兴趣的:(2019-11-30)