PostCSS Flexbugs Fixes
bug 4
Input
.foo { flex: 1; }
.bar { flex: 1 1; }
.foz { flex: 1 1 0; }
.baz { flex: 1 1 0px; }Output
.foo { flex: 1 1; }
.bar { flex: 1 1; }
.foz { flex: 1 1; }
.baz { flex: 1 1; }bug 6
Input
.foo { flex: 1; }Output
bug 8.1.a
Input
Output
Usage
Last updated