How css flexible layout is compatible with ie browsers

how is css elastic layout compatible with ie browsers?

adding these prefixes is useless

  display box
  display -webkit-box
  display -moz-box
  display -ms-flexbox
  display -webkit-flex
  display flex
  -webkit-justify-content flex-end
  -moz-justify-content flex-end
  -ms-justify-content flex-end
  -o-justify-content flex-end
  justify-content flex-end
Mar.30,2022

low version ie you can use table to achieve a similar effect, but generally you can use floating or positioning to achieve


elastic box compatible with IE11, if it is below IE11, you can change to floating or positioning layout on it.


as shown in the picture, 6-9 plus nothing works. https://caniuse.com/-sharpsearch=flex

clipboard.png


there are three versions of elastic layout. Before IE10, try the old version of elastic layout


give up flex when it is lower than IE10. Using float, compatibility will be better.


use https://github.com/doctyper/f...

Menu