每當(dāng)一個(gè)mixin定義在另一個(gè)mixin中時(shí),它也可以用作返回值。
下面的示例演示了如何在LESS文件中使用mixin
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Mixin inside mixin</title> </head> <body> <h1>Welcome to Tutorialspoint</h1> <div class="myclass"> <p>LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </div> </body> </html>
接下來(lái),創(chuàng)建文件 style.less 。
.outerMixin(@value) { .nestedMixin() { font-size: @value; } } .myclass { .outerMixin(30); .nestedMixin(); }
您可以使用以下命令將 style.less 編譯為 style.css :
lessc style.less style.css
接下來(lái)執(zhí)行上面的命令,它將用下面的代碼自動(dòng)創(chuàng)建 style.css 文件:
.myclass { font-size: 30; }
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
在 less_mixin_inside_mixin.html 文件中保存html代碼。
在瀏覽器中打開(kāi)此HTML文件,將顯示如下輸出。
更多建議: