Sha256: 501f6fee8fa376a8f65df370167abc8d9ec346cc9bdfde1d0bb0357d3420912d
Contents?: true
Size: 686 Bytes
Versions: 23
Compression:
Stored size: 686 Bytes
Contents
@charset "UTF-8"; /// Generates vendor prefixes. /// /// @argument {string} $property /// Property to prefix. /// /// @argument {string} $value /// Value to use. /// /// @argument {list} $prefixes /// Vendor prefixes to output. /// /// @example scss /// .element { /// @include prefixer(appearance, none, ("webkit", "moz")); /// } /// /// // CSS Output /// .element { /// -webkit-appearance: none; /// -moz-appearance: none; /// appearance: none; /// } /// /// @author Hugo Giraudel @mixin prefixer( $property, $value, $prefixes: () ) { @each $prefix in $prefixes { #{"-" + $prefix + "-" + $property}: $value; } #{$property}: $value; }
Version data entries
23 entries across 23 versions & 4 rubygems