You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
linear-gradient: background-image:linear-gradient(left top,#9f9, white);
It should be background-image:linear-gradient(to right bottom, #9f9, white);
repeating-linear-gradient:
it lacks 'background-image:' so it should be added.
radial-gradient: background-image:radial-gradient(75% 50%, ellipse closest-side, #99ff99, #ffffff 50%);
It should be background-image:radial-gradient(ellipse closest-side at 75% 50%, #99ff99, #ffffff 50%);
repeating-radial-gradient: background-image:repeating-radial-gradient(75% 50%, ellipse closest-side, #99ff99, #ffffff 50%);
It should be background-image:repeating-radial-gradient(ellipse closest-side at 75% 50%, #99ff99, #ffffff 50%);
The text was updated successfully, but these errors were encountered:
It seems it doesn't match with this latest CR specification.
http://www.w3.org/TR/2012/CR-css3-images-20120417/
linear-gradient:
background-image:linear-gradient(left top,#9f9, white);
It should be
background-image:linear-gradient(to right bottom, #9f9, white);
repeating-linear-gradient:
it lacks 'background-image:' so it should be added.
radial-gradient:
background-image:radial-gradient(75% 50%, ellipse closest-side, #99ff99, #ffffff 50%);
It should be
background-image:radial-gradient(ellipse closest-side at 75% 50%, #99ff99, #ffffff 50%);
repeating-radial-gradient:
background-image:repeating-radial-gradient(75% 50%, ellipse closest-side, #99ff99, #ffffff 50%);
It should be
background-image:repeating-radial-gradient(ellipse closest-side at 75% 50%, #99ff99, #ffffff 50%);
The text was updated successfully, but these errors were encountered: