README
PostCSS flex-alias 
PostCSS plugin easily write flex
Documentation
Click on the Documentation to learn more
Explain
display: flex-[flex-flow][justify-content][align-items][align-content]
flex-flow
x: row nowrapy: column nowrapw: row wrapm: column warp
justify-content
s: flex-starta: space-aroundb: space-betweenc: centere: flex-end
align-items
s: flex-startb: baselinec: centere: flex-endh: stretch
align-content
s: flex-starta: space-aroundb: space-betweenc: centere: flex-end
Example
/* input */
.foo {
display: flex-xcc;
}
/* output */
.foo {
display: flex;
justify-content: center;
align-items: center;
}
/* input */
.foo {
display: flex-wbc;
}
/* output */
.foo {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
Usage
postcss([ require('postcss-flex-alias') ])
// or postcss.config.js
plugins: {
'postcss-flex-alias': {}
}
See PostCSS docs for examples for your environment.