0

main container is full page

on all search engine elemenst on website are good positioning but no on safari. Safari dont see css "flex" and i dont know how to fix it

safari dosen't see in css

display:flex;

and this to

display:-webkit-flex;
user3348867
  • 11
  • 1
  • 7
  • div.main_container { display: flex; display: -webkit-flex; width: 100%; } enter code here belka_z_logowaniem is a row with login panel div.belka_z_logowaniem{ width: 100%; float: left; } – user3348867 Jun 11 '15 at 21:09
  • 1
    Safari supports `-webkit-flex` and `-webkit-inline-flex` since version 6.1, according to [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/display#Browser_compatibility). – Oriol Jun 12 '15 at 13:16
  • Possible duplicate of [Flexbox code working on all browsers except Safari. Why?](http://stackoverflow.com/questions/35137085/flexbox-code-working-on-all-browsers-except-safari-why) – Michael Benjamin Jul 01 '16 at 11:29

1 Answers1

1

Maybe you use old version of safari browser?

Make sure that your browser supports flexbox. To check version of browsers see this

user3272018
  • 2,309
  • 5
  • 26
  • 48