多重賦值適用于映射,它們被視為對的列表。如果你想使用map,那么你必須更改@each語句并使用多個分配。
@each $var1, $var2 in <map>
下面簡要解釋語法。
$var1, $var2: 這些表示變量的名稱。
<map>: 它表示對的列表。
下面的示例演示了如何使用多個分配與映射:
<html> <head> <title>Control Directives & Expressions</title> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> <h1>Welcome to Tutorialspoint</p> <h2>Welcome to Tutorialspoint</p> <h3>Welcome to Tutorialspoint</p> </body> </html>
接下來,創(chuàng)建文件style.scss。
@each $header, $color in (h1: red, h2: green, h3: blue) { #{$header} { color: $color; } }
您可以通過使用以下命令讓SASS查看文件,并在SASS文件更改時更新CSS:
sass --watch C:\ruby\lib\sass\style.scss:style.css
接下來執(zhí)行上面的命令,它將自動創(chuàng)建style.css文件用下面的代碼:
h1 { color: red; } h2 { color: green; } h3 { color: blue; }
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上述html代碼保存在@ each_multiple_map.html文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。
更多建議: