postcss plugin for transforming a stylesheet to an IE8-compatible stylesheet.
npm install postcss-ie8
Type: Array
Array with regular expressions of selectors which should be removed.
Example
{
selectors: [
/:last-child/,
/:nth-child/,
/:nth-last-child/,
]
}
Type: Array
Array of atRules to remove.
Default
{
atRules: [
'keyframes',
'supports',
'document',
]
}
Type: Boolean
Default: false
Remove all prefixes in declarations.
Type: Array
Array with regular expressions of properties which should be removed.
Type: Array
Array with regular expressions of values which should be removed.
Type: Object
Options for css-mediaquery.
Default
{
type: 'screen',
width: '1024px'
}