W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
@import(inline)會將CSS復(fù)制到輸出CSS文件中,而不進(jìn)行處理。 當(dāng)CSS文件不是LESS兼容時,這是有用的。 雖然LESS支持大多數(shù)標(biāo)準(zhǔn)CSS,但在某些地方不支持注釋,并且不修改CSS,它不會支持所有已知的CSS hacks。 即使 @import(inline)不會處理CSS,它將確保所有的CSS將在一個文件中。 這是在版本1.5.0 中發(fā)布的。
以下示例演示了在LESS文件中使用引用關(guān)鍵字:
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Import Option Inline</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 (inline) "http://m.hgci.cn/statics/demosource/import_inline.css"; p { color:red; }
import_inline.css文件將從路徑//m.hgci.cn/statics/demosource/import_inline.css導(dǎo)入style.less中,以下代碼:
.style { font-family: "Comic Sans MS"; font-size: 20px; }
您可以使用以下命令將 style.less 編譯為 style.css :
lessc style.less style.css
接下來執(zhí)行上面的命令,它將用下面的代碼自動創(chuàng)建 style.css 文件:
.style { font-family: "Comic Sans MS"; font-size: 20px; } p { color: red; }
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
在 import_options_inline.html 文件中保存html代碼。
在瀏覽器中打開此HTML文件,將顯示如下輸出。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: