在nth-child选择器中,你可以使用#{$variable}的插值语法来插入变量的值。例如: scss li:nth-child(#{$item-index}) { background-color: yellow; } 这里,#{$item-index}会被替换为变量$item-index的值(即3),所以选择器实际上是li:nth-child(3)。
在scss中,可以使用nth-child伪类来访问DOM元素的第一个子元素: &:nth-child(1):before{ content:"First Child"; } 案例 div{ &:nth-child(1):before{ content:"First Child"; font-weight: bold; } &:nth-child(2):before{ content:"Second Child"; font-style: italic; } &:nth-child(3):before...