Less匯入


它是用於匯入 LESS 或 CSS 檔案的內容。

範例

下面的例子演示了使用匯入 LESS 檔案:
<html>
<head>
   <title>Less Importing</title>
   <link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
   <h1>Example using Importing</h1>
   <p class="myclass">LESS enables customizable, manageable and reusable style sheet for web site.</p>
   <p class="myclass1">It allows reusing CSS code and writing LESS code with same semantics.</p>
   <p class="myclass2">LESS supports creating cleaner, cross-browser friendly CSS faster and easier.</p>
</body>
</html>
接下來,建立檔案 myfile.less。

myfile.less

.myclass{
    color: #FF8000;
}

.myclass1{
    color: #5882FA;
}
接下來,建立檔案 style.less。

style.less

@import "h/";
.myclass2
{
color: #FF0000;
} 

這將從路徑  h/ 匯入 myfile.less 到 style.less 檔案

你可以編譯 style.less 檔案使用以下命令來生成 style.css 檔案:
lessc style.less style.css
接著執行上面的命令,它會自動建立 style.css檔案,下面的程式碼:

style.css

.myclass {
  color: #FF8000;
}
.myclass1 {
  color: #5882FA;
}
.myclass2 {
  color: #FF0000;
}

輸出

讓我們來執行以下步驟,看看上面的程式碼工作:
  • 儲存上面的 html 程式碼到 importing.html 檔案。
  • 在瀏覽器中開啟該HTML檔案,得到如下輸出顯示。