LESS - 导入指令



描述

@import 指令用于在代码中导入文件。它将 LESS 代码分散到不同的文件中,并允许轻松维护代码结构。您可以在代码中的任何位置放置@import 语句。

例如,您可以使用@import 关键字导入文件,例如@import "file_name.less"

文件扩展名

您可以根据不同的文件扩展名使用@import 语句,例如:

  • 如果您使用的是.css 扩展名,则它将被视为 CSS,并且@import 语句保持不变。

  • 如果它包含任何其他扩展名,则它将被视为 LESS 并会被导入。

  • 如果没有 LESS 扩展名,则会附加并包含为导入的 LESS 文件。

@import "style";      // imports the style.less
@import "style.less"; // imports the style.less
@import "style.php";  // imports the style.php as a less file
@import "style.css";  // it will kept the statement as it is

示例

以下示例演示了在 SCSS 文件中使用变量:

<!doctype html>
   <head>
      <title>Import Directives</title>
      <link rel = "stylesheet" href = "style.css" type = "text/css" />
   </head>

   <body>
      <h2>Example of Import Directives</h2>
      <p class = "myline">Welcome to Tutorialspoint...</p>
   </body>
</html>

接下来,创建import_dir.less 文件。

import_dir.less

.myline {
   font-size: 20px;
}

现在,创建style.less 文件。

style.less

@import "https://tutorialspoint.com/less/import_dir.less";
.myline {
   color:#FF0000;
}

import_dir.less 文件将从路径https://tutorialspoint.com/less/import_dir.less导入到style.less 文件中。

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

lessc style.less style.css

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

style.css

.myline {
   font-size: 20px;
}

.myline {
   color: #FF0000;
}

输出

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

  • 将上述 html 代码保存在import_directives.html 文件中。

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

Import Directives
广告