@import(once)确保文件只导入一次,并且对该文件将忽略任何以下import语句。 这是 @import statments的默认行为。 这是在版本1.4.0 中发布的。
以下示例演示了在LESS文件中使用 once 关键字:
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Import Options Once</title> </head> <body> <h1>Welcome to Tutorialspoint</h1> <p class="para_1">LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> <p class="para_2">LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </body> </html>
接下来,创建文件 style.less 。
@import (once) "//www..cn/statics/demosource/once.less"; @import (once) "//www..cn/statics/demosource/once.less"; // this statement will be ignored .para_1 { color: red; .style; } .para_2 { color: blue; }
once.less文件将从路径//www..cn/statics/demosource/once.less导入到style.less,以下代码:
.style { font-family: "Comic Sans MS"; font-size: 20px; }
您可以使用以下命令将 style.less 编译为 style.css :
lessc style.less style.css
接下来执行上面的命令,它将用下面的代码自动创建 style.css 文件:
.style { font-family: "Comic Sans MS"; font-size: 20px; } .para_1 { color: red; font-family: "Comic Sans MS"; font-size: 20px; } .para_2 { color: blue; }
让我们执行以下步骤,看看上面的代码如何工作:
在 import_options_once.html 文件中保存上面的html代码。
在浏览器中打开此HTML文件,将显示如下输出。
描述它将返回列表中指定位置的值。 它需要 list (以逗号或空格分隔的值列表)和 index (指定要返回的元素的位置的整数)作为参数。...
描述如果定义变量两次,将搜索并使用当前范围内变量的上一次定义。此方法类似于CSS本身,其中值是从定义中的最后一个属性提取的...
基本边框的三个关键属性是 border-widthborder-style 和 border-color 。border-width - 设置边框的宽度。 border-style - 设置...
CSS语法CSS规则有两个主要部分:一个选择器和一个或多个声明。下面的代码是一个CSS规则。h1{color:red;front-size:12px;}在上面...