扫码一下
查看教程更方便
默认变量只有在尚未设置时才能设置变量。 此功能不是必需的,因为可以通过事后定义轻松覆盖变量。
以下示例演示了 LESS 文件中默认变量的使用
less_default_variables.html
<html> <head> <link rel = "stylesheet" href = "style.css" type = "text/css" /> <title>迹忆客(jiyik.com) - LESS 默认变量</title> </head> <body> <h1>Welcome to 迹忆客</h1> <p>LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </body> </html>
现在,创建文件 style.less。
style.less
@import "lib.less"; // @color 首次声明 @color: green; // 这个将覆盖先前定义的 @color p { color : @color; }
以下代码会导入 lib.less 文件 到 style.less
lib.less
@color: blue;
我们可以使用以下命令将 style.less 文件编译为 style.css
$ lessc style.less style.css
执行上述命令; 它将使用以下代码自动创建 style.css 文件
style.css
p { color: green; }
按照以下步骤查看上述代码的工作原理