PostCSS plugin This project tries to fix all of flexbug's issues.
bug 3
div {
display: flex;
min-height: 50vh;
}div {
display: flex;
height: 50vh;
}bug 4
.foo {
flex: 1 1 0;
}.foo {
flex: 1 1 0%;
}bug 6
.foo {
flex: 1;
}.foo {
flex: 1 1 auto;
}bug 7
div {
box-sizing: border-box;
flex: 0 0 100%;
}div {
box-sizing: border-box;
flex: 0 0 auto;
width: 100%;
}bug 8.1.a
.foo {
flex: 1 1 calc(1px);
}.foo {
flex-grow: 1;
flex-shrink: 0;
flex-basis: calc(1px);
}postcss([require('postcss-flexbugs-fixes')]);See PostCSS docs for examples for your environment.