scss 使用@for创建Sass循环 Posted 2021-05-17 tags: 篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 使用@for创建Sass循环相关的知识,希望对你有一定的参考价值。 // start through end example @for $i from 1 through 12 { .col-#{$i} { width: 100%/12 * $i; } } // when the above is converted to css, the below is the result .col-1 { width: 8.33333%; } .col-2 { width: 16.66667%; } ... .col-12 { width: 100%; } 以上是关于scss 使用@for创建Sass循环的主要内容,如果未能解决你的问题,请参考以下文章 scss Sass Loops(scss)。 for循环,每个循环和有用的例子。 scss SASS for循环 scss Sass循环:for,while,每个/ Sass反向循环:http://blog.ricardofilipe.com/post/reverse-loops-with-sass SCSS / SASS:如何在每个循环中创建变量 scss SaSS使用@each循环并列出#sass Sass:使用@use 和@forward 时的模块循环