gpt4 book ai didi

css - 使用 Crunch 进行 LESS 字符串插值?

转载 作者:太空宇宙 更新时间:2023-11-04 04:20:21 25 4
gpt4 key购买 nike

在 LESS 中阅读了一些关于字符串插值的文章,我尝试了以下方法,但对我不起作用:

.wk (@property, @data) {
@property: @data;
~"-webkit-@{property}": @data;
}

如果我尝试使用 Crunch 编译它,我会收到一个错误:

Unrecognized Input

还有其他方法可以逃避或编译吗?

最佳答案

不幸的是 less 不支持属性名称插值,但是 this answer has a great hack for doing it anyway.但它会导致一堆虚拟的、无用的规则。所以你最终得到这样的东西:

#usage {
_: 0 ; -webkit-border-radius: 3px;
_: 0 ; -moz-border-radius: 3px;
_: 0 ; border-radius: 3px;
}

关于css - 使用 Crunch 进行 LESS 字符串插值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19170503/

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