css - Flex box is not working in Safari 5.1 -


i getting sooooo frustrated .... using flex box table , working great chrome , firefox not in safari. safari version 5.1. tried find out solution on net cudnt find it. people asked use display: -webkit-box not working too. magic trick ?????????

i tried fixes has been told on net. here code

.my-table ul li {      display: -webkit-flex;      display: -webkit-box;      display: -ms-flex;      display: flex; } 

flexbox works in safari 5.1.7

i used project notice of flex properties didn't work. flex-wrap, flex-direction, flex-grow, , etc.

  display: -webkit-box;   display: -moz-box;   display: box;   display: -webkit-flex;   display: -moz-flex;   display: -ms-flexbox;   display: flex; 

Comments