less.css 跨文件共享变量

发布于 2024-12-09 19:47:15 字数 392 浏览 1 评论 0原文

我正在使用 less.css 来简化我的 css 样式。 我想在一个 less 文件中声明一个变量,并在我的许多 less 文件中共享它的用法。这可能吗?例如:

english.less

@languageFloat:左;

无图表

div#footer a.web
{   
    display: block;
    float: @languageFloat;
    color: #cccccc;
    margin-right: 10px;
}

I am using less.css to simplify my css styling.
I'd like to declare a varaible in one less file and share its usage across my many less files. Is this possible? For example:

english.less

@languageFloat: left;

chart.less

div#footer a.web
{   
    display: block;
    float: @languageFloat;
    color: #cccccc;
    margin-right: 10px;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女七分熟 2024-12-16 19:47:16

最好的方法是 @import LESS 文件,其中包含所有变量。以下是 @import 关键字的语法:

// For LESS file includes,
@import "lib.less";
// or
@import "lib"; // infers the .less extension

// and for plain CSS includes which are added but not parsed by LESS
@import "style.css";

如果您向用户提供 CSS 文件(而不是浏览器内的 less.js 解析),这种方法尤其有效,因为 @import code> 语句会将您的 LESS 和 CSS 文件复合为一个 CSS 文件。也许您可以考虑使用一个包含变量的控制器 LESS 文件,然后是其他 LESS 和 CSS 文件,以便最终结果是您向浏览器提供的单个文件。

我想这会是这样简单的事情:

// Controller.less
@import "english.less";
@import "chart.less";

The best way to do this is to @import your LESS file with all your variables in it. Here's the syntax for the @import keyword:

// For LESS file includes,
@import "lib.less";
// or
@import "lib"; // infers the .less extension

// and for plain CSS includes which are added but not parsed by LESS
@import "style.css";

This works especially well if you serve CSS files to your users (as opposed to the in-browser less.js parsing) because the @import statement will compound your LESS and CSS files into one single CSS file. Maybe you can consider having one controller LESS file that includes your variables, then your other LESS and CSS files so that the end result is one single file you serve to the browser.

I imagine it would be something simple like this:

// Controller.less
@import "english.less";
@import "chart.less";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文