scss - 变量calc计算


scss - 变量calc计算

假定定义变量$a = '20px',若要使用calc,直接calc(100% - $a)这么用是不行的,

需要按如下使用方法:

  calc(100% - #{$a})