Mixin scope
优质
小牛编辑
135浏览
2023-12-01
描述 (Description)
由变量组成的Mixins是可见的,可以在调用者的范围内使用。 但是有一个例外,如果调用者包含一个具有相同名称的变量,那么该变量不会被复制到调用者的作用域中。 只有调用者范围内的变量受到保护,并且重写了继承的变量。
例子 (Example)
以下示例演示了在LESS文件中使用mixin scope -
<html>
<head>
<link rel = "stylesheet" href = "style.css" type = "text/css" />
<title>Mixins Scope</title>
</head>
<body>
<div class = "myclass">
<h2>Welcome to xnip</h2>
<p>LESS is a CSS pre-processor that enables customizable,
manageable and reusable style sheet for web site.</p>
</div>
</body>
</html>
接下来,创建style.less文件。
style.less
.mixin() {
@bgcolor: #C0C0C0;
}
.myclass{
.mixin();
background-color: @bgcolor;
}
您可以使用以下命令将style.less编译为style.css -
lessc style.less style.css
执行上面的命令; 它将使用以下代码自动创建style.css文件 -
style.css
.myclass {
background-color: #C0C0C0;
}
输出 (Output)
请按照以下步骤查看上述代码的工作原理 -
将上述html代码保存在less_mixin_as_function_scope.html文件中。
在浏览器中打开此HTML文件,将显示以下输出。
当直接在其中定义变量时,无法在调用者范围中覆盖变量。 有关更多信息, 请单击此处