提交 42f44ef0 编写于 作者: H hdx

feat(css): 补充 深度选择器示例及平台兼容性

上级 25757ca7
......@@ -179,6 +179,22 @@ const doubleCount = computed<number>(() : number => {
</style>
```
### 深度选择器
|App|Web|
|:-:|:-:|
|x |4.0|
处于 `scoped` 样式中的选择器如果想要做更“深度”的选择,也即:影响到子组件,可以使用 `:deep()` 这个伪类:
```html
<style scoped>
.a :deep(.b) {
/* ... */
}
</style>
```
### CSS Modules
|App|Web|
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册