-ms-flex-pack: justify is incorrect, space-between is the correct value
See original GitHub issueThe following:
div {
justify-content: space-between;
}
is translated by Autoprefixer (with default settings) to:
div {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
but there is no such thing as -ms-flex-pack: justify;
. It should be space-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.
Issue Analytics
- State:
- Created 10 years ago
- Comments:9 (8 by maintainers)
Top Results From Across the Web
Justify-content: space-between works incorrect - Stack Overflow
Show activity on this post. The width of the other blocks is 100%, but the header width gets bigger than the block below....
Read more >appbaseio/reactivesearch - Gitter
Hi, I'm trying to use a DynamicRangeSlider to query a nested object's properties. It seems the dataField property does not accept the path...
Read more >UNPKG - @copart/notes-component
Note that for\n * non-primitives the value returned is a reference to the ... has a numeric length property and extreme indices defined;...
Read more >Coursera_files/zh.app.6d874689892e11789ca7.js.下载 ...
defineProperty(exports,"__esModule",{value:!0});var t=e("UIUV");Object ... 基于他们的查找结果的备选解决方案","an appropriate anthropological ...
Read more >Win64OpenSSL_Light-1_1_1.exe - Hybrid Analysis
Indicators Report False-Positive. Not all malicious and suspicious indicators are displayed. Get your own cloud service or the full version to view all ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
According flexbox cheat sheet IE 10 required
-ms-flex-pack: justify
.justify is correct for IE10 space-between is correct for IE11+