CSS的私有作用域scoped和深度选择器/deep/和>>>
2021-01-02 11:29
标签:添加 扩大 作用 child 预处理 scope tps com 办公 当给添加 scoped 属性之后,它会给每一个class添加一个唯一的属性值,避免了出现类名重复,样式重叠被污染的问题,相当于限制了作用域,它的 css 只作用于当前组件 广州vi设计公司 http://www.maiqicn.com 我的007办公资源网 https://www.wode007.com 因为scoped属性,限制了作用域,父组件的样式不能应用到子组件上,所以需要深度选择器/deep/和>>>,来向下扩大范围 >>,soscw.com" target="_blank">CSS的私有作用域scoped和深度选择器/deep/和>>> 标签:添加 扩大 作用 child 预处理 scope tps com 办公 原文地址:https://www.cnblogs.com/cmqj/p/13663720.html1.scoped属性:
// 编译前
.className {
background: red;
}
// 编译后
.className[data-el-v09ew9w] {
background: red;
}
2.深度选择器
// 非css语言预处理器,可以使用>>>
.parentElementClassName >>> .childrenElementClassName {
background: red;
}
// less或scss,可以使用/deep/
.parentElementClassName /deep/ .childrenElementClassName {
background: red;
}
文章标题:CSS的私有作用域scoped和深度选择器/deep/和>>>
文章链接:http://soscw.com/index.php/essay/39572.html