Answers for "what are mixins and how to use them in scss"

CSS
11

sass mixin

@mixin transform($property) {
  -webkit-transform: $property;
  -ms-transform: $property;
  transform: $property;
}
.box { @include transform(rotate(30deg)); }
Posted by: Guest on May-29-2020

Code answers related to "what are mixins and how to use them in scss"

Browse Popular Code Answers by Language