I've been experimenting with css3 radial gradients and came up with a nice looking gradient:
background-image: -webkit-radial-gradient(center 110%, 80% 100%, transparent 20%, #22853D);
Now, I am trying to make it cross-browser. What would be the equivalent of the above for the old -webkit-gradient('radial') syntax?
UPDATE Simply put it, it is possible to draw an ellipse with the old syntax?