mixin 예제

Kim jae-eok·2020년 5월 12일
0

SASS mixin to css vendor prefixing

// sass
 
@mixin prefix($property, $value, $prefixes: ()) {
  @each $prefix in $prefixes {
    #{'-' + $prefix + '-' + $property}: $value;
  }
 
  #{$property}: $value;
}
 
button{
@include prefix(box-sizing, border-box, webkit moz);
}
 
// css compiled
 
button { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
profile
블로그 이전 중 (https://www.notion.so/My-blog-0d569b9028434fb6a99a3e66b6e807b1)

0개의 댓글