扫码一下
查看教程更方便
Import 导入语句可以有一个包含路径的变量。 当我们引用公共父目录时,这非常有用。
下面的例子演示了LESS文件中Import 语句的使用
less_variables_interpolation_import.html
<html> <head> <link rel = "stylesheet" href = "style.css" type = "text/css" /> <title>迹忆客(jiyik.com) - LESS 导入语句中的变量</title> </head> <body> <div class = "myclass"> <h2>Welcome to 迹忆客</h2> <p>LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </div> </body> </html>
现在,创建文件 style.less。
style.less
@path : "."; @import "@{path}/external1.less"; .myclass { color : #A52A2A; }
以上代码会将 external.less 文件从 external1.less 中导入 style.less
external1.less
.myclass { background: #C0C0C0; }
我们可以使用以下命令将 style.less 文件编译为 style.css
$ lessc style.less style.css
执行上述命令; 它将使用以下代码自动创建 style.css 文件
style.css
.myclass { background: #C0C0C0; } .myclass { color: #A52A2A; }
按照以下步骤查看上述代码的工作原理