Less CSS Guards
描述
Guard用于匹配表達(dá)式上的簡單值或參數(shù)個數(shù)。 它應(yīng)用于CSS選擇器。 它是用于聲明mixin并立即調(diào)用它的語法。 要成功地引出if類型語句; 將此功能與功能&結(jié)合使用,您可以將多個guards分組。
例子
以下示例演示在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 W3Cschool</h2>
</div>
<div class="style">
<h3>The largest Tutorials Library on the web.</h3>
</div>
</body>
</html>
接下來,創(chuàng)建文件 style.less
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
接下來執(zhí)行上面的命令,它將用下面的代碼自動創(chuàng)建 style.css 文件:
style.css
.style {
background-color: blue;
color: white;
}
輸出
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上述html代碼保存在css_guard.htm文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。