标签: sass
使用SCSS,我在使用循环之前设置:::的内容:
@each $element in del, choice, subst, abbr { #{$element}::before {content: "#{$element}"; }
可以使用&而不是循环来完成,例如:
del, choice, subst, abbr { &::before {content: "#{&} } }
?