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

CSS 'transition-duration' property fails CSS3 validation #556

Closed
hughlaw opened this issue Jun 6, 2013 · 1 comment
Closed

CSS 'transition-duration' property fails CSS3 validation #556

hughlaw opened this issue Jun 6, 2013 · 1 comment
Labels

Comments

@hughlaw
Copy link

hughlaw commented Jun 6, 2013

The last properties in the CSS fail CSS3 validation:

.anythingSlider .start-stop {
transition-duration: 0;
-o-transition-duration: 0;
-moz-transition-duration: 0;
-webkit-transition-duration: 0;
}

Easy fix to this is to add a a seconds indicator to the duration:

.anythingSlider .start-stop {
transition-duration: 0s;
-o-transition-duration: 0s;
-moz-transition-duration: 0s;
-webkit-transition-duration: 0s;
}

@Mottie
Copy link
Contributor

Mottie commented Oct 4, 2013

Thanks @hughlaw!

I'll have this fixed in the next update!

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

No branches or pull requests

2 participants