sass-autoprefixer
Collection of mixins to add vendor prefixes directly in sass/scss.install
NPM
npm install sass-autoprefixer
Bower
bower install sass-autoprefixer
Using
Add the scss file to your your own scss file:@import "./../bower_components/sass-autoprefixer/scss/prefixes";
replace your scss statement with its sass-autoprefixer mixin, e.g. replace.your-class {
flex-flow: row wrap;
}
with
.your-class {
@include vp-flex-flow(row wrap);
}
the resulting css will look like
```css .your-class { -webkit-flex-flow: row wrap; -moz-flex-flow: row wrap; -ms-flex-flow: row wrap; flex-flow: row wrap; } ```
Mixins
Check the source code to see which mixins exist or help me and update this ReadmeSee also
- Bootstrap 4 Backward - Bootstrap 4 Version using sass-autoprefixer to compile bootstrap 4 directly in your project.