0

I have a problem with the following CSS:

-ms-flex-order: -1;
-webkit-order: -1;
order: -1

We use this to put a generated Box before another one with different Content. But this solution dosnt work in IE9 :( I need a solution with pure CSS because we cannot change the Layout of the Generated Box.

1 Answers1

0

Flexbox is not working in IE9. You need at least IE10. So no pure CSS solution for order property. You'll have to use polyfills or just apply all needed DOM manipulations via JavaScript.

Also you have an option to use floats and it might help in some cases.

Vadim Ovchinnikov
  • 13,327
  • 5
  • 62
  • 90