scss calc使用变量

425 阅读1分钟

calc引入变量不是使用val(变量名),而是使用#{变量}

$basic: 0.5rem;
width: calc(100% - #{$basic})