Safari unconfigured, does not load css

0

The Header of my site, is opening unconfigured in Safari 8.0.8, it is not catching the css:

display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
-ms-grid-row-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;

Has anyone had the same problem and was able to solve it?

    
asked by anonymous 13.04.2017 / 18:50

1 answer

0

In Safari before 10 you need the prefix -webkit , try this:

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

-ms-flex-align: center;
-ms-grid-row-align: center;
-webkit-align-items: center;
align-items: center;

-ms-flex-pack: justify;
justify-content: space-between;
    
13.04.2017 / 18:55