Here is the code:

.flex-container { padding: 0; margin: 0; list-style: none; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; justify-content: space-around; } https://codepen.io/Flector/pen/vxMVRe 

works fine everywhere except IE. How to fix this code so that IE displays navigation in several lines?

navigation in ie11

    1 answer 1

    It is necessary to add - flex-wrap: wrap; for .flex-container

    • thank you so much! - Flector