gpt4 book ai didi

less - 在 LESS 的选择器中使用变量

转载 作者:行者123 更新时间:2023-12-04 11:28:25 26 4
gpt4 key购买 nike

我有一个变量 @index我想输出一个选择器,以便当 @index3 , 选择器是 [data-sth="3"] .

更长的例子:

@index: 3;
/* selector here */ {
color: red;
}

期望的输出:
[data-sth="3"] {
color: red;
}

我已经尝试了一些东西,但还没有设法得到任何有效的东西。

谢谢。

最佳答案

Variable Interpolation . IE。:

[data-sth="@{index}"] {
color: red;
}

原始答案(1.40 之前的较少版本):

The following code should work:

(~'[data-sth="@{index}"]') {
color: red;
}

The ~ removes the quotation marks.

关于less - 在 LESS 的选择器中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10154595/

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