欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

LESS 保護的命名空間


描述

當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 displayedred, when(@color = blue)instyle.lessand when color is other thanblue, then this paragraph will be defaultblack.</p>
</body>
</html>


接下來,創建文件style.less 。

style.less

@import "//www.w3cschool.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文件


lib.less

@color: blue;


您可以使用以下命令將 style.less 編譯為 style.css :

lessc style.less style.css


接下來執行上面的命令,它將用下面的代碼自動創建 style.css 文件:

style.css

p {
  color: red;
}


輸出

讓我們執行以下步驟,看看上面的代碼如何工作:

  • less_mixin_guarded_namespaces.html文件中保存html代碼。

  • 在瀏覽器中打開此HTML文件,將顯示如下輸出。


shuc