W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
它添加屬性值到最后。
下面的例子演示了在LESS文件中使用合并逗號功能:
<!doctype html> <head> <title>Merge Comma</title> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <body> <h2>Example of Merge Comma</h2> <p class="class">Hello World!!!Welcome to Tutorialspoint...</p> </body> </html>
接下來,創(chuàng)建文件 style.less 。
.myfunc() { box-shadow+: 5px 5px 5px grey; } .class { .myfunc(); box-shadow+: 0 0 5px #f78181; }
您可以使用以下命令將 style.less 編譯為 style.css :
lessc style.less style.css
接下來執(zhí)行上面的命令,它將用下面的代碼自動創(chuàng)建 style.css 文件:
.class { box-shadow: 5px 5px 5px grey, 0 0 5px #f78181; }
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
在 merge_comma.html 文件中保存html代碼。
在瀏覽器中打開此HTML文件,將顯示如下輸出。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: