sass中使用calc包含變量

在 sass 中使用 calc,若是 calc 中包含一個變量,正確的使用姿式是:git

$padding: 10px;
$thirdWidth: 33.33333333%;
.content{
    width: calc(#{$thirdWidth} - #{$padding});
}

複製代碼

參考連接: Variables don't work with calc()github

相關文章
相關標籤/搜索