当guard应用于命名空间时,只有在guard条件返回true时才使用由命名空间定义的mixin。 命名空间防护类似于mixins上的guard。
下面的示例演示了在LESS文件中使用防护名称空间:
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Guarded Namespaces</title> </head> <body> <h2>Welcome to Tutorialspoint</h2> <p>This will paragraph be displayed red, when (@color = blue) in style.less and when color is other than blue, then this paragraph will be default black.</p> </body> </html>
接下来,创建文件 style.less 。
@import "//www..cn/less/lib.less"; #namespace when (@color = blue) { .mixin() { color: red; } } p{ #namespace .mixin(); }
将路径从http://www.w3cshool.cn/statics/demosource/lib.less导入到style.less中的lib.less文件
@color: blue;
您可以使用以下命令将 style.less 编译为 style.css :
lessc style.less style.css
接下来执行上面的命令,它将用下面的代码自动创建 style.css 文件:
p { color: red; }
让我们执行以下步骤,看看上面的代码如何工作:
在 less_mixin_guarded_namespaces.html 文件中保存html代码。
在浏览器中打开此HTML文件,将显示如下输出。
描述变量和mixin在分离的规则集中定义。例子下面的例子演示了在LESS文件中规则集中定义的变量和mixin的使用:passing_ruleset.ht...
描述默认函数仅在保护条件内可用时返回true,并且与任何其他mixin不匹配,否则返回false。 当默认函数在mixin guard条件之外使用...
CSS 图片本章节将为大家介绍如何使用 CSS 来布局图片。圆角图片实例圆角图片:img { border-radius: 8px;}实例椭圆形图片:img { b...
.animated_div { width:60px; height:40px; background:#92B901; color:#ffffff; position:absolute; font-weight:bold; font-si...
@font-face CSS3 at-rule允许我们指定在线字体来显示网页上的文本。@font-face消除了对访问者计算机上安装的字体的依赖。例子此...