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
We've been working on supporting IE10 with aphrodite which uses this library. We have added a global reset for -ms-flex: 0 1 auto; for all elements in our normalization, but in order to get flex working reasonably we needed to change all of our shorthand usages of flex: 1 style syntax to have all of the values for flex-grow | flex-shrink | flex-basis as specified at https://developer.mozilla.org/en-US/docs/Web/CSS/flex.
So for example flex: 1 would be translated to flex: 1 1 0% and flex: 0 would be translated to flex: 0 1 0%.
I would like to create a PR here to add support for it but wanted to make sure to open an issue first to ensure it's a reasonable thing to add support for.
For others needing IE10 support to get the default flex value we tried to use something like this:
*,*:before,*:after {
-ms-flex:01 auto;
}
The text was updated successfully, but these errors were encountered:
Hmm, in general, this package is not responsible for fixing browser differences but rather to just add prefixes where needed, but I can see it might help and is specific to IE10 which the default package doesn't even support anyways, so we might add that to the flexboxIE plugin if you want to.
We've been working on supporting IE10 with aphrodite which uses this library. We have added a global reset for
-ms-flex: 0 1 auto;
for all elements in our normalization, but in order to get flex working reasonably we needed to change all of our shorthand usages offlex: 1
style syntax to have all of the values forflex-grow | flex-shrink | flex-basis
as specified at https://developer.mozilla.org/en-US/docs/Web/CSS/flex.So for example
flex: 1
would be translated toflex: 1 1 0%
andflex: 0
would be translated toflex: 0 1 0%
.I would like to create a PR here to add support for it but wanted to make sure to open an issue first to ensure it's a reasonable thing to add support for.
For others needing IE10 support to get the default flex value we tried to use something like this:
The text was updated successfully, but these errors were encountered: