My webapp was designed for Chrome and Firefox. The CSS elements the
same on both. Now I am also trying to get it work on latest Safari OS X.
Quite a few CSS elements don’t work on Safari. Like for example in my custom CSS
This line doesn’t work:
body{border:0;
overflow-x:hidden;
overflow-y:auto;
font-family: 'Raleway', sans-serif;
background-color:#eff0ea;
opacity:0;
margin:0;
padding:0;
z-index: 0;
position: relative;
}
Then this line doesn’t work:
.service .service_step{ display:none;}
Then this
.span_2_of_2 { width: 100%;}
.span_1_of_2 { width: 49.2%;}
Need help understanding what I need to do differently for it to run on Safari.
Secondly is there a tool where I can put my CSS code and check what will NOT work on Safari?
Thank You