vue 修改样式添加!important不起作用怎么办?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 修改样式添加!important不起作用怎么办?相关的知识,希望对你有一定的参考价值。
1、sass和less的样式穿透 使用/deep/
即:外层 /deep/ 第三方组件
a. 当前的vue文件要加上lang和scoped属性
b 当前写的选择器优先级要大于组件内置的选择器
eg:
.wrapper /deep/ .ant-modal-body
background-color: #fff;
2、stylus样式穿透 使用>>>
外层 >>> 第三方组件
.wrapper >>> .ant-modal-body
background: #fff;
3、vue2.x 此方法无效
>>> .ant-modal-body
background-color:#fff;
olor:#606266;
转载:https://www.itqstars.com/blog/65
以上是关于vue 修改样式添加!important不起作用怎么办?的主要内容,如果未能解决你的问题,请参考以下文章
vue项目写的样式应用不到元素上?elementUI等框架的坑