1
//Usage
@include border-radius(150px / 70px); 

//Mixin
@mixin border-radius($values) {
  -webkit-border-radius: $values;
  -moz-border-radius: $values;
  border-radius: $values;
}

结果将是:

border-radius: the division of 150/70, which is 2.xxxxx-something

如何在同一个 mixin 中解决这个问题?

4

1 回答 1

2

您需要在这里使用字符串插值:

.foo {
  @include border-radius(#{150px} / 70px);
}
于 2013-07-12T14:40:46.523 回答