3 /// Generates vendor prefixes for values.
5 /// @argument {string} $property
8 /// @argument {string} $value
11 /// @argument {list} $prefixes
12 /// Vendor prefixes to output.
16 /// @include value-prefixer(cursor, grab, ("webkit", "moz"));
21 /// cursor: -webkit-grab;
22 /// cursor: -moz-grab;
26 /// @author Matthew Tobiasz
28 @mixin value-prefixer(
33 @each $prefix in $prefixes {
34 #{$property}: #{"-" + $prefix + "-" + $value};