You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 22, 2019. It is now read-only.
Hi,
Is there any chance of getting an option to preserve the % sign on min-width ? This is to avoid a flexbox bug in IE 10/11.
The classic fix is to use unitless
min-width:0;(cf: https://blog.goetter.fr/2016/11/09/flexbox-min-width-0-is-the-new-zoom-1/, in French) but it seems in IE 10/11 you need to add a%for the fix to work properly. (IE convert unitless 0 to0px).At present writing this:
min-width:0%;Gets minified to:
min-width:0;And this breaks IE10/11. Just need the % preserving on
min-width:0%.