nth()函數
語法:
nth($list,$n)
nth() 函數用來指定列表中某個位置的值。不過在Sass 中,nth() 函數和其他語言不同,1 是指列表中的第一個標籤值,2 是指列給中的第二個標籤值,依此類推。如:
>> nth(10px 20px 30px,1)
10px
>> nth((Helvetica,Arial,sans-serif),2)
"Arial"
>> nth((1px solid red) border-top green,1)
(1px "solid" #ff0000)
注:在nth($list,$n) 函數中的$n 必須是大於0 的整數:
>> nth((1px solid red) border-top green 1 ,0)
SyntaxError: List index 0 must be a non-zero integer for `nth'