在Sass中,我有一个列表和一个变量:
$fontWeight: 500;
$fontWeightList: 200 300 400 500 700 800 1000;
我用这个结构迭代它:
@each $fontWeightItem in $fontWeightList {
@if ($fontWeight == $fontWeightItem) {
// do something
}
}
但@if语句中的条件永远不会评估为true,我不明白为什么!