css3 - sass中Mixins中each循环的问题
PHP中文网
PHP中文网 2017-04-17 11:06:50
0
1
518
@mixin css3($property, $value) {
    @each $prefix in -webkit-, -moz-, -ms-, -o-, '' {
        #{$prefix}#{$property}: $value;
    }
}
@mixin css3after($property, $value) {
    @each $prefix in -webkit-, -moz-, -ms-, -o-, '' {
        $property: #{$prefix}#{$value};
    }
}




header{
    @include css3after(display,box);
}
.border_radius {
  @include css3(transition, 0.5s);
}

为什么 .border_radius 的引用是成功的,但是 header的就是失败的??

.border_radius成功后是这样的:

   .border_radius {
      -webkit-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
    }
PHP中文网
PHP中文网

认证高级PHP讲师

全部回覆(1)
黄舟
@mixin css3after($property, $value) {
    @each $prefix in -webkit-, -moz-, -ms-, -o-, '' {
        #{$property}: #{$prefix}#{$value};
    }
}

這樣試試,屬性名應該用這種形式

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板