2.0.1 • Published 9 years ago

postcss-prefect v2.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
9 years ago

PostCSS Opacity Build Status

PostCSS plugin to add opacity filter for IE8.

/* Input example */
.foo {
  opacity: .5;
}
/* Output example */
.foo {
  opacity: .5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

Usage

postcss([ require('postcss-opacity') ])

See PostCSS docs for examples for your environment.