Skip to content
This repository was archived by the owner on Oct 1, 2022. It is now read-only.

Latest commit

 

History

History
28 lines (21 loc) · 695 Bytes

File metadata and controls

28 lines (21 loc) · 695 Bytes

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.