1
//Usage
@include border-radius(150px/70px);
//Mixin
@mixin border-radius($values) {
-webkit-border-radius: $values;
-moz-border-radius: $values;
border-radius: $values;
}
使用橢圓形邊框半徑的結果將是:在SASS混入
border-radius: the division of 150/70, which is 2.xxxxx-something
怎麼可以這樣固定在同一混入內?
我給你正確的答案。然而我用'@include border-radius(「150px/70px」);'然後我在mixin中使用'unquote' :) – Frexuz
對我沒有'unquote' – Brewal