使用第 n 个子值作为 SASS 变量

时间:2022-11-21
本文介绍了使用第 n 个子值作为 SASS 变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法将 nth-child 值用作 SASS 变量?

Is there any way to use the nth-child value as a SASS variable ?

使用示例:

div:nth-child(n) {
    content: '#{$n}'
}

div:nth-child(n) {
    background: rgb(#{$n}, #{$n}, #{$n});
}

推荐答案

我不认为有办法做到这一点.但是你可以使用 @for 指令来循环已知数量的元素:

I don't think there's a way to do exactly that. But you can use @for directive to loop through a known number of elements:

$elements: 15;
@for $i from 0 to $elements {
  div:nth-child(#{$i + 1}) {
     background: rgb($i, $i, $i);
  }
}

这篇关于使用第 n 个子值作为 SASS 变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

上一篇:“*"是什么意思?在 CSS 中是什么意思? 下一篇:CSS选择器用于选择另一个元素之前的元素?

相关文章

最新文章