gpt4 book ai didi

css - 您如何编写供多个类使用的 LESS 规则?

转载 作者:太空宇宙 更新时间:2023-11-03 21:31:48 27 4
gpt4 key购买 nike

假设我们需要几个不同的类来使用以下内容:

color:#ccf;
background-color:#fcc;
font-size:0.7em;

我们如何在 LESS 中进行设置?

这些类不能相互使用,因此将它们设置在逗号分隔列表 (.note, .product, .restricted{ }) 中不是解决方案。

我们需要这样的东西:

@myClass{
color:#ccf;
background-color:#fcc;
font-size:0.7em;
}

.note{@myClass}
.product{@myClass}
.restricted{@myClass}

我试过了,它只是杀死了 LESS。

最佳答案

您想使用 LESS mixins :

.mixin-name() { //mixin which can be used by any selector
color:#ccf;
background-color:#fcc;
font-size:0.7em;
}

.note {
.mixin-name();
}

.product {
.mixin-name();
}

.restricted {
.mixin-name();
}

关于css - 您如何编写供多个类使用的 LESS 规则?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28981979/

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