LESS 導(dǎo)入選項參考關(guān)鍵字
描述
@import(reference)用于導(dǎo)入外部文件,但不會將導(dǎo)入的樣式添加到編譯的CSS文件中。 這是在版本1.5.0 中發(fā)布的。
例子
以下示例演示了在LESS文件中使用reference關(guān)鍵字:
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Import Options Reference</title> </head> <body> <h1>Welcome to Tutorialspoint</h1> <p>LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </body> </html>
接下來,創(chuàng)建文件 style.less。
風格
@import (reference) "//www.w3cschool.cn/statics/demosource/import_reference.less"; p { .style1; }
import_reference.less文件將從//www.w3cschool.cn/statics/demosource/import_reference.less導(dǎo)入到style.less。以下代碼:
import_reference.less
.style1 { color: #A0A0A0; font-family: "Comic Sans MS"; font-size: 20px; }
您可以使用以下命令將 style.less 編譯為 style.css :
lessc style.less style.css
接下來執(zhí)行上面的命令,它將用下面的代碼自動創(chuàng)建 style.css 文件:
style.css
p { color: #A0A0A0; font-family: "Comic Sans MS"; font-size: 20px; }
輸出
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
在import_options_reference.html文件中保存上面的html代碼。
在瀏覽器中打開此HTML文件,將顯示如下輸出。