试过的童鞋肯定知道,如果直接写style标签,不加scoped,确实可以覆盖,但是全局其他样式也会被影响,如果只想修改当前页面的这个属性怎么办呢?
找到要设置样式的类名,直接按照下面写法设置就可以了!
<style lang="less" scoped>
@deep: ~'>>>';
@{deep}.ivu-tag-text{
color: white !important;
}
@{deep}.ivu-tag .ivu-icon-ios-close{
color: white !important;
}
</style>