css calc()的计算效果无效

1、calc函数中计算的字段是否写对了

$height: 1rem;
.class{
  height: calc(#{$height} - 10px);
}
// calc中的减号前后必须空一格

你可能感兴趣的:(css calc()的计算效果无效)