1.0.3 • Published 8 years ago

postcss-background-alpha v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

PostCSS background-alpha Build Status

PostCSS PostCSS plugin to add gradient filter for IE8 to support rgba background.

/* Input example */
.foo {
  background-color: rgba(0,0,0,0.5);
}
/* Output example */
.foo {
  background-color: rgba(0,0,0,0.5);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='80000000',EndColorStr = '80000000');
}

Usage

postcss([ require('postcss-background-alpha') ])

See PostCSS docs for examples for your environment.