[我正在使用Sass Indented语法虽然可以通过SCSS自由回答]
这是循环的嵌套部分,我想在每次迭代中使用变量命名选择器:
$class: 2
@for $i from 1 through 2
@if $i == 1
$sel: link
@if $i == 2
$sel: visited
div #s-#{$class} ul
&:nth-child(1) li
&:nth-child(2) a
&:$sel
color: $cc
但我得到了:
"Syntax error: Invalid CSS after \"&:\": expected pseudoclass or pseudoelement, was \"$sel\"\A
(是的我可以看到它是语法错误)
我正在寻找这样的输出:
div #s-2 ul:nth-child(1) li:nth-child(2) a:link {
color: #cc0000;
}
div #s-2 ul:nth-child(1) li:nth-child(2) a:visited {
color: #cc0000;
}
Sass是否有能力做这样的事情?如果是这样的话?
答案 0 :(得分:0)
有一种更好(更明显)的方式来做我想要实现的目标(使用$ i从1到1作为例子):
$class: 2
@for $i from 1 through 1
div #s-#{$class} ul
&:nth-child(1) li
&:nth-child(2) a
&:visited, &:link
color: $cc
输出
div #s-2 ul:nth-child(1) li:nth-child(2) a:visited, div #s-2 ul:nth-child(1) li:nth-child(2) a:link {
color: #cc0000;
}
虽然我对使用选择器作为变量的方法感到好奇
答案 1 :(得分:0)
尝试使用#{$sel}
:
$class: 2
$cc: #cc0000
@for $i from 1 through 2
$sel: ()
@if $i == 1
$sel: link
@if $i == 2
$sel: visited
div #s-#{$class} ul
&:nth-child(1) li
&:nth-child(2) a
&:#{$sel}
color: $cc
给出:
div #s-2 ul:nth-child(1) li:nth-child(2) a:link {
color: #cc0000; }
div #s-2 ul:nth-child(1) li:nth-child(2) a:visited {
color: #cc0000; }
请注意,我必须在ifs之前初始化$sel
,可能是因为否则它会保留在每个if的范围内。我昨天才学会了SASS,所以我可能不正确。 ;)