LESS 導(dǎo)入CSS選項(xiàng)關(guān)鍵字
描述
@import(css)會(huì)將文件導(dǎo)入為常規(guī)CSS,而不管文件擴(kuò)展名。 這是在版本1.4.0 中發(fā)布的。
例子
以下示例演示如何在LESS文件中使用css關(guān)鍵字:
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Import Options CSS</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>
接下來,創(chuàng)建文件 style.less 。
style.less
@import (css) "//www.w3cschool.cn/statics/demosource/css.txt"; .para_1 { color: green; .my_css; } .para_2 { color: blue; }
css.txt文件將被從路徑//www.w3cschool.cn/statics/demosource/css.txt導(dǎo)入到style.less,以下代碼:
css.text
.my_css { font-family: "Comic Sans MS"; font-size: 20px; }
您可以使用以下命令將 style.less 編譯為 style.css :
lessc style.less style.css
接下來執(zhí)行上面的命令,它將用下面的代碼自動(dòng)創(chuàng)建 style.css 文件:
style.css
.my_css { font-family: "Comic Sans MS"; font-size: 20px; } .para_1 { color: green; font-family: "Comic Sans MS"; font-size: 20px; } .para_2 { color: blue; }
輸出
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上面的html代碼保存在import_options_css.html文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。