作者:mobiledu2502887683 | 来源:互联网 | 2023-09-04 13:43
我在SCSS中为网格列(12列)提供了一个@for函数。
我的SASS功能:
@for $i from 1 through 12 {
.lp-col.s#{$i} { width: 100%/12 * $i; }
}
CSS结果:
.lp-col.l5 {
width: 41.6666666667%; }
对于所有12列,依此类推
如何将%值四舍五入为41.6666%?
我将Visual Studio Code和Prepros用于CSS编译。