There is a flex container. And it is beautifully displayed in browsers, except for IE 11. For some reason, the last element it brings to the next line. How to cope with this? I tried to set flex values specifically for IE using the "//" symbol, but no reactions.
CSS
.box { display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; -webkit-justify-content: flex-start; justify-content: flex-start; width: 100%; margin: 0 auto 3em; } .box__item { position: relative; display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; -webkit-align-items: stretch; align-items: stretch; text-align: center; -webkit-flex: 0 0 260px; flex: 0 0 260px; margin:inherit; }
flex-wrap: wrap;- why write it if there is no transfer? - Qwertiy ♦