Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'CSS3 Images, standard' problem #87

Open
saschanaz opened this issue May 17, 2013 · 0 comments
Open

'CSS3 Images, standard' problem #87

saschanaz opened this issue May 17, 2013 · 0 comments

Comments

@saschanaz
Copy link

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%);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant