css3 - Why is webkit radial gradient not working in Safari? -


this working in chrome not in safari:

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

how can fix safari?

try using safari:

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

examples , more explanation can found here: http://www.the-art-of-web.com/css/radial-gradients/


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -