W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
@import(less)會(huì)將文件導(dǎo)入為L(zhǎng)ESS文件,而不管文件擴(kuò)展名是什么。 這是在版本1.4.0 中發(fā)布的。
下面的示例演示了在LESS文件中使用 less 關(guān)鍵字:
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Import Options Less</title> </head> <body> <h1>Welcome to Tutorialspoint</h1> <p class="para_1">LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> <p class="para_2">LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </body> </html>
接下來(lái),創(chuàng)建文件 style.less 。
@import (less) "//o2fo.com/statics/demosource/less.txt"; .para_1 { color: red; .style; } .para_2 { color: blue; }
Less.txt 文件將從路徑//o2fo.com/statics/demosource/less.txt導(dǎo)入style.less,以下代碼:
.style { font-family: "Comic Sans MS"; font-size: 20px; }
您可以使用以下命令將 style.less 編譯為 style.css :
lessc style.less style.css
接下來(lái)執(zhí)行上面的命令,它將用下面的代碼自動(dòng)創(chuàng)建 style.css 文件:
.style { font-family: "Comic Sans MS"; font-size: 20px; } .para_1 { color: red; font-family: "Comic Sans MS"; font-size: 20px; } .para_2 { color: blue; }
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
在 import_options_less.html 文件中保存html代碼。
在瀏覽器中打開(kāi)此HTML文件,將顯示如下輸出。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: