@import(less)会将文件导入为LESS文件,而不管文件扩展名是什么。 这是在版本1.4.0 中发布的。
下面的示例演示了在LESS文件中使用 less 关键字:
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Import Options Less</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 (less) "//www..cn/statics/demosource/less.txt"; .para_1 { color: red; .style; } .para_2 { color: blue; }
Less.txt 文件将从路径//www..cn/statics/demosource/less.txt导入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_less.html 文件中保存html代码。
在浏览器中打开此HTML文件,将显示如下输出。
描述 difference 函数在逐个通道的基础上从第一输入颜色中减去第二输入颜色(注意,负值被反转)。 减去黑色将导致没有变化,并且...
本文提供了LESS安装的步骤过程。LESS的系统要求操作系统:跨平台浏览器支持: IE(Internet Explorer 8+),Firefox,Google Chrome...
CSS 按钮本章节我们为大家介绍使用 CSS 来制作按钮。基本按钮样式默认按钮 CSS 按钮CSS 实例.button { background-color: #4CAF5...