-
-
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-align: end is incorrect, flex-end is the correct value #169
Comments
Your MSDN link is to IE 11 docs, but IE 10 supports different flexbox standard and according some posts requires |
Does I understand right, that IE flexbox issues is only about IE 11 specs? |
Hah, you're right! What a mess. IE11 doesn't need prefixes so I don't get it why they not only kept prefixed versions as well but also changed their syntax. I was confused because I clicked on a link in IE10 docs: http://msdn.microsoft.com/en-us/library/ie/hh673531(v=vs.85).aspx They have a mess in docs... So it seems this is one of these things that Compass got wrong and Autoprefixer got right. |
Like a honey on the soul :D |
BTW, this post: |
The following:
is translated by Autoprefixer (with default settings) to:
but there is no such thing as
-ms-flex-align: end
. It should beflex-end
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.
See also #165 for a similar issue.
The text was updated successfully, but these errors were encountered: