Search code examples
safaricssradial-gradients

Why is webkit radial gradient not working in Safari?


This is working in Chrome but not in Safari:

background: -webkit-radial-gradient(center, ellipse cover, #fdfdfd, #d3d3d3);

How can I fix it for Safari?


Solution

  • Try using for Safari:

    background: -webkit-gradient( radial, <point>, <radius>, <point>, <radius>[, <stop>]* ) <color>;
    

    Examples and more explanation can be found here: http://www.the-art-of-web.com/css/radial-gradients/