less.css 跨文件共享变量
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是
@import
LESS 文件,其中包含所有变量。以下是@import
关键字的语法:如果您向用户提供 CSS 文件(而不是浏览器内的 less.js 解析),这种方法尤其有效,因为
@import
code> 语句会将您的 LESS 和 CSS 文件复合为一个 CSS 文件。也许您可以考虑使用一个包含变量的控制器 LESS 文件,然后是其他 LESS 和 CSS 文件,以便最终结果是您向浏览器提供的单个文件。我想这会是这样简单的事情:
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: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: