1.1.0 • Published 9 years ago

miaow-css-autoprefixer v1.1.0

Weekly downloads
16
License
MIT
Repository
github
Last release
9 years ago

miaow-css-autoprefixer

Miaow的CSS自动前缀补全工具,只是对autoprefixer进行简单封装

使用效果

:fullscreen a {
  display: flex
}

/* 处理后 */
:-webkit-full-screen a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex
}
:-moz-full-screen a {
  display: flex
}
:-ms-fullscreen a {
  display: -ms-flexbox;
  display: flex
}
:fullscreen a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

参数说明

传入的所有参数都会直接传递给autoprefixer

1.1.0

9 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.3.2

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago

0.0.2

10 years ago