PostCSS plugin fix ie < 10 flex.
/* Input example */
.foo {
display: flex;
align-items: center;
}/* Output example */
.foo > * {
display: table-cell;
vertical-align: middle;
}postcss([ require('postcss-flex-ie') ])See PostCSS docs for examples for your environment.