扫码一下
查看教程更方便
Less 命名空间用于将 mixin 分组到一个通用名称下。 使用命名空间,我们可以避免名称冲突并从外部封装一组mixin。
下面的例子演示了LESS文件中命名空间和访问器的使用
namespaces_accessors.html
<html> <head> <title>迹忆客(jiyik.com) - Less 命名空间和访问器</title> <link rel = "stylesheet" type = "text/css" href = "style.css" /> </head> <body> <h1>Example using Namespaces and Accessors</h1> <p class = "myclass">LESS enables customizable, manageable and reusable style sheet for web site.</p> </body> </html>
接下来,创建文件 style.less。
style.less
.class1 { .class2 { .val(@param) { font-size: @param; color:green; } } } .myclass { .class1 > .class2 > .val(20px); }
我们可以使用以下命令将 style.less 文件编译为 style.css
$ lessc style.less style.css
执行上述命令; 它将使用以下代码自动创建 style.css 文件
style.css
.myclass { font-size: 20px; color: green; }
按照以下步骤查看上述代码的工作原理