Search code examples
cssinternet-explorer-10flexboxjustify

Why does display: -ms-flex; -ms-justify-content: center; not work in IE10?


Why doesn't the following code work in IE10?

.foo {
    display: -ms-flex; 
    -ms-justify-content: center;
}

What do I need to write in order for them to work?


Solution

  • IE10 implemented the Flexbox draft from March 2012. Those properties correspond to these:

    .foo {
        display: -ms-flexbox;
        -ms-flex-pack: center;
    }