Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8773

gulp-autoprefixerでベンダープレフィックスを自動で付ける

$
0
0

gulp-autoprefixerを使えば、CSSのベンダープレフィックスを自動で付けられます。

インストール

$ npm install -D gulp gulp-stylus gulp-autoprefixer

タスクを書く

gulpfile.js
const{src,dest}=require('gulp')conststylus=require('gulp-stylus')constautoprefixer=require('gulp-autoprefixer')conststylusCompile=()=>src('./src/**/!(_)*.styl').pipe(stylus()).pipe(autoprefixer({cascade:false})).pipe(dest('./dest/'))exports.default=stylusCompile

npm run buildのコマンドで実行できるようにpackage.jsonにスクリプトを登録しておきます。

package.json
{..."scripts":{"build":"gulp"}...}

実際に動かす

下記のようなStylusを書いて

style.styl
.foodisplayflexjustify-contentcenteralign-itemscenter

コンパイルすると

$ npm run build

下記のようなCSSが出力されます。

style.css
.foo{display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;}

対応ブラウザを指定する

.browserslistrcgulpfile.jsと同じ階層に作成すれば、.browserslistrcの内容に応じたベンダープレフィックスを付けられます。

.browserslistrc
last 2 versions
not ie <= 10
> 1% in JP

この状態で、下記のようなStylusを書いて

style.styl
.foodisplayflexjustify-contentcenteralign-itemscenter

コンパイルすると

$ npm run build

下記のようなCSSが出力されます。

style.css
.foo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}

Viewing all articles
Browse latest Browse all 8773

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>