gpt4 book ai didi

css - 在 LESS 导入语句中使用变量

转载 作者:技术小花猫 更新时间:2023-10-29 11:01:33 25 4
gpt4 key购买 nike

如果我要从同一目录导入多个文件,我想重复使用目录路径(假设带有导入语句的文件与导入目标不在同一目录中)。到目前为止,我已经试过了:

@directoryPath: "../modules/core/less/";

@import @directoryPath + "file.less";
@import (@directoryPath + "file.less");
@import @{directoryPath}"file.less";
@import "@{directoryPath}file.less";

@filePath: @directoryPath + "file.less"; //I have verified this produces the proper string

@import @filePath;
@import @{filePath};

6 个导入语句都不起作用。他们中的一些人在

source: url(/*LESS variables*/);

声明,但在@import 声明中的工作方式不同。关于什么会起作用有什么想法吗?

最佳答案

参见 Variables > Variable Interpolation > Import statementsthe documentation .

正确的语法是:

@path: "../modules/core/less/";

@import "@{path}file.less";

关于css - 在 LESS 导入语句中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29291901/

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