您的位置:首页技术文章
文章详情页

css3 - sass中Mixins中each循环的问题

【字号: 日期:2023-08-05 15:14:24浏览:33作者:猪猪

问题描述

@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; }

问题解答

回答1:

@mixin css3after($property, $value) { @each $prefix in -webkit-, -moz-, -ms-, -o-, ’’ {#{$property}: #{$prefix}#{$value}; }}

这样试试,属性名应该用这种形式

标签: CSS
相关文章: