question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

-ms-flex-pack: justify is incorrect, space-between is the correct value

See original GitHub issue

The 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:closed
  • Created 10 years ago
  • Comments:9 (8 by maintainers)

github_iconTop GitHub Comments

6reactions
aicommented, Jan 8, 2014

According flexbox cheat sheet IE 10 required -ms-flex-pack: justify.

5reactions
egoheadcommented, Oct 24, 2016

justify is correct for IE10 space-between is correct for IE11+

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found