vue中v-html中标签添加CSS样式
2019-06-11 本文已影响0人
浪浪山小妖_
1.通过
/deep/
使得在使用scoped属性的情况下,穿透scoped,修改其他组件的值
<style lang="less" scoped>
.box{
/deep/ .info-box {
color:gray
}
}
</style>
2.通过
>>>
使得在使用scoped属性的情况下,穿透scoped,修改其他组件的值
<style lang="less" scoped>
.box{
>>> .info-box {
color:gray
}
}
</style>
若不生效,选其一
--by Affandi ⊙▽⊙