gpt4 book ai didi

没有 Combine 的 CSS Scopes 方程

转载 作者:太空宇宙 更新时间:2023-11-03 23:32:41 25 4
gpt4 key购买 nike

我需要方程式而不组合多个作用域,例如与原生:

原生 CSS:

.test 
{
color: black;
}

.demo
{
color: black;
}

和组合版本:

.test,
.demo
{
color: black;
}

但我需要以下内容:

@.test: .demo; // Something like that equation, all test classes equal demo class

.demo
{
color: black;
}

如果 CSS 无法实现,作为最后的手段 我可以使用 LESS

最佳答案

在LESS中,可以使用extend函数来实现。

.demo 
{
color: black;
}
.test:extend(.demo){}; /* extends the properties of the .demo */
/* .test:extend(.demo all){}; /* the all keyword would extend nested sub classes of .demo also */

Demo

关于没有 Combine 的 CSS Scopes 方程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24883301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com