Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 698
user2590633 Avatar asked Jul 17 '13 09:07

user2590633


People also ask

Why is my iexplore not working?

If you can't open Internet Explorer, if it freezes, or if it opens briefly and then closes, the problem might be caused by low memory or damaged system files. Try this: Open Internet Explorer and select Tools > Internet options. Select the Advanced tab, and then select Reset.

Will Internet Explorer still work after June 2022?

This is a reminder that Microsoft plans to retire and end support for the Internet Explorer 11 (IE11) desktop application on most versions of Windows 10 on June 15, 2022.

How do I force compatibility mode in IE 11?

Open up Internet Explorer (IE 11) Press the Alt key on your keyboard, this will make a menu bar appear. Click on the Tools menu tab. Select the Compatibility View settings option.


1 Answers

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

.foo {     display: -ms-flexbox;     -ms-flex-pack: center; } 
like image 143
cimmanon Avatar answered Sep 20 '22 15:09

cimmanon