欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

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 "http://www.w3cschool.cn/less/myfile.less";
.myclass2
{
color: #FF0000;
}

路徑從 style.less 的myfile.less“> //www.w3cschool.cn/less/myfile.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文件,將顯示如下輸出。


輸出