作者:克乄浪木守 | 来源:互联网 | 2023-08-11 08:12
@mixinrounded($vert,$horz,$radius:10px){border-#{$vert}-#{$horz}-radius:$radius;
@mixin rounded($vert, $horz, $radius: 10px) {
border-#{$vert}-#{$horz}-radius: $radius;
-moz-border-radius-#{$vert}#{$horz}: $radius;
-webkit-border-#{$vert}-#{$horz}-radius: $radius;
}
像这样的代码就只用写第一行border-#{$vert}-#{$horz}-radius: $radius;
各个浏览器的前缀会经过sass的编译自动生成?