我有一个项目,它被分成父应用程序,以及几个可重用的子组件在不同的存储库中。我想在这些子组件中定义默认的CSS变量,这些变量可以被父应用程序覆盖,但是我找不到合适的语法。这是我尝试过的:
/* parent */
:root {
--color: blue;
}
/* child */
:root {
--color: var(--color, green);
}
.test {
width: 200px;
height: 200px;
background: var(--color, red);
}
https://codepen.io/daviestar/pen/brModx
颜色应该是蓝色,但是当定义了孩子:root
时,颜色实际上是红色的,至少在Chrome中是这样。
对此有正确的解决方法吗?在SASS中,您可以在子变量中添加!default
标志,这基本上意味着“声明它是否尚未声明”。
答案 0 :(得分:1)
CSS代表cascading style sheets
,
所以你不能通过父母覆盖任何东西......
唯一的方法是创建更强大的规则。
查看.c1
和.p1
.parent {
--background: red;
}
.child {
--size: 30px;
--background: green; /* this wins */
background-color: var(--background);
width: var(--size);
height: var(--size);
}
.p1 .c1 {
--background: red; /* this wins */
}
.c1 {
--size: 30px;
--background: green;
background-color: var(--background);
width: var(--size);
height: var(--size);
}
<div class="parent">
<div class="child"></div>
</div>
<hr />
<div class="p1">
<div class="c1"></div>
</div>
答案 1 :(得分:0)
感谢@Hitmands提示我有一个简洁的解决方案:
/* parent */
html:root { /* <--- be more specific than :root in your parent app */
--color: blue;
}
/* child */
:root {
--color: green;
}
.test {
width: 200px;
height: 200px;
background: var(--color);
}