I've following CSS class and I want to make it work for all below browsers:
- IE 9 and above
- Chrome
- Mozilla Firefox
Safari
.itemContainer { display: flex; flex-direction: row; } .wrap-vertical { flex: 1; margin-top: 15px; }
Currently it is only working on Chrome and FF.
And I tried -ms-
and -webkit-
for IE and Safari but it's not working.
Please suggest changes to accommodate this.