LESS - CSS 守卫


描述

守卫用于匹配简单值或表达式上的多个参数。它应用于 CSS 选择器。这是声明 mixin 并立即调用它的语法。成功带出if类型语句;使用功能&加入此功能,它允许您对多个守卫进行分组。

例子

以下示例演示了在 LESS 文件中使用css Guard -

CSS_guard.htm

<!doctype html>
   <head>
      <link rel = "stylesheet" href = "style.css" type = "text/css" />
   </head>

   <body>
      <div class = "cont">
         <h2>Welcome to TutorialsPoint</h2>
      </div>
		
      <div class = "style">
         <h3>The largest Tutorials Library on the web.</h3>
      </div>
   </body>
</html>

接下来,创建style.less文件。

无风格

@usedScope: global;
.mixin() {
   @usedScope: mixin;
   .cont when (@usedScope = global) {
      background-color: red;
      color: black;
   }
   
   .style when (@usedScope = mixin) {
      background-color: blue;
      color: white;
   }
   @usedScope: mixin;
}
.mixin();

您可以使用以下命令将style.less文件编译为style.css -

lessc style.less style.css

执行上述命令;它将使用以下代码自动创建style.css文件 -

样式.css

.style {
   background-color: blue;
   color: white;
}

输出

按照以下步骤查看上面的代码是如何工作的 -

  • 将以上 html 代码保存在css_guard.htm文件中。

  • 在浏览器中打开此 HTML 文件,将显示以下输出。

减少 CSS 保护