Sass 的@for 循環中有兩種方式:spa
@for $i from <start> through<end>
@for $i from <start> to <end>
$i 表示變量、start 表示初始值、end 表示結束值
through 表示包含end 這個數,而to 則不包含end 這個數
@while 指令相似@for,只要@while 後面的條件爲true 就會執行3d
@each 循環code
@each 循環就是遍歷一個列表,而後從列表中取出對應的值。blog
@each $var in <list>