LESS - 导入语句



描述

导入语句可以包含一个保存路径的变量。当您引用一个公共父目录时,这非常有用。

示例

以下示例演示了在导入语句中使用变量 -

<html>
   <head>
      <link rel = "stylesheet" href = "style.css" type = "text/css" />
      <title>LESS Variables in Import Statements</title>
   </head>

   <body>
      <div class = "myclass">
         <h2>Welcome to Tutorialspoint</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

@path : "https://tutorialspoint.com/less";
@import "@{path}/external1.less";
.myclass {
   color : #A52A2A;
}

以下代码将从https://tutorialspoint.com/less/external1.less路径将external.less文件导入到style.less中 -

external1.less

.myclass {
   background: #C0C0C0;
}

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

lessc style.less style.css

执行上述命令;它将自动创建style.css文件,其中包含以下代码 -

style.css

body {
   background: #C0C0C0;
}

p {
   color: #A52A2A;
}

输出

按照以下步骤查看上述代码的工作原理 -

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

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

LESS Import Statements
less_variables.htm
广告