美文网首页
在vue中覆盖iview.css样式失效的问题

在vue中覆盖iview.css样式失效的问题

作者: 欧_汤姆 | 来源:发表于2019-12-12 10:44 被阅读0次

试过的童鞋肯定知道,如果直接写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>

相关文章

网友评论

      本文标题:在vue中覆盖iview.css样式失效的问题

      本文链接:https://www.haomeiwen.com/subject/jlizgctx.html