I'm trying to add a radial gradient over a background image. It works perfectly on Chrome and Firefox, but it does not on Safari. I can't figure out why.
Here is my css :
#banner {
background-attachment: scroll, scroll, scroll, fixed;
background-color: #fff;
background: radial-gradient(circle at 60% 30%, rgba(0,0,0,0.1), rgba(0,0,0,0.7)),url(../images/fond2.jpg) center left no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
I tried using :
background : -webkit-radial-gradient(circle at 60% 30%, rgba(0,0,0,0.1), rgba(0,0,0,0.7)),url(../images/fond2.jpg) center left no-repeat;
But it still does not work. Any idea on how I could fix that ?
Thanks !