-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-ms-flex-pack: justify is incorrect, space-between is the correct value #165
Comments
FWIW, the issue can be workaround by specifying div {
-ms-flex-pack: space-between;
justify-content: space-between;
} gets converted to: div {
-ms-flex-pack: space-between;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between;
} |
The same with |
Thanks for a big review of Autoprefixer and a lot of issues :). Unfortunately, I can read and analyze them only tomorrow. |
Is this issue is based on IE 11 specs too? Can we close it? |
Yup. The same, Compass is wrong here. |
According flexbox cheat sheet IE 10 required |
I reported an issue to Compass: Compass/compass#1509 |
@ai FYI, it was an error in my mixins, not Compass ones. Compass mixins in the 1.0.0 alpha version currently don't support Flexbox prefixing across different spec versions, see: http://beta.compass-style.org/reference/compass/css3/flexbox/ |
justify |
The following:
is translated by Autoprefixer (with default settings) to:
but there is no such thing as
-ms-flex-pack: justify;
. It should bespace-between
as with all other versions, see:http://msdn.microsoft.com/en-us/library/ie/jj127304(v=vs.85).aspx
Compass 1.0.0.alpha.17 does it correctly.
The text was updated successfully, but these errors were encountered: