Internet Explorer 11 flexbox issues

The code I've written works in every browser I've tested except IE 11. The problem seems to be here:

#wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    position: relative;
    top: 1em;
}

      

If I remove flex it becomes more manageable, but with them it shrinks all content into this long, narrow div that goes on forever.

Would it help if I tested in IE 10?

+3


source to share


2 answers


By simply adding 100% width to the body I fixed my problem.



0


source


You just need flex: 1; This will fix the problem for IE11



#wrapper {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -o-flex;
display: flex;
-webkit-flex-direction: row;
-moz-flex-direction: row;
-ms-flex-direction: row;
-o-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%;
height: 100%;
position: relative;
top: 1em;
flex:1;
}

      

+2


source







All Articles