Less 變量名稱
描述
我們可以定義變量名稱由一個值組成的變量。
例子
下面的例子演示了在LESS文件中使用變量保持另一個變量:
<html><head><linkrel="stylesheet"href="style.css"type="text/css"/><title>LESS Variable Names</title></head><body><divclass="myclass"><h2>Welcome to W3Cschool</h2><p>LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p></div></body></html>
接下來,創(chuàng)建文件style.less。
style.less
.myclass{@col:#ca428b;@color:"col";background-color:@@color;}
您可以使用以下命令將style.less編譯為style.css:
lessc style.less style.css
接下來執(zhí)行上面的命令,它將自動創(chuàng)建style.css文件用下面的代碼:
style.css
myclass{background-color:#ca428b;}
輸出
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將以上html代碼保存在less_variables_names.html文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。