We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Unlike the Can I use database, doiuse warns against the usage of transition: grid and transition: grid-* like this:
transition: grid
transition: grid-*
main.css:2:1: CSS Grid animation not supported by: Edge (129,130), Chrome (129,130), Chrome for Android (129) (css-grid-animation) main.css:3:1: CSS Grid animation not supported by: Edge (129,130), Chrome (129,130), Chrome for Android (129) (css-grid-animation) main.css:4:1: CSS Grid animation not supported by: Edge (129,130), Chrome (129,130), Chrome for Android (129) (css-grid-animation) main.css:5:1: CSS Grid animation not supported by: Edge (129,130), Chrome (129,130), Chrome for Android (129) (css-grid-animation) main.css:7:1: CSS Grid animation not supported by: Edge (129,130), Chrome (129,130), Chrome for Android (129) (css-grid-animation) main.css:8:1: CSS Grid animation not supported by: Edge (129,130), Chrome (129,130), Chrome for Android (129) (css-grid-animation) main.css:9:1: CSS Grid animation not supported by: Edge (129,130), Chrome (129,130), Chrome for Android (129) (css-grid-animation)
main.css:
.test { transition: grid 1s; transition: grid-template 1s; transition: grid-template-rows 1s; transition: grid-template-columns 1s; transition: grid-template-areas 1s; transition: grid-auto-rows 1s; transition: grid-auto-columns 1s; }
The text was updated successfully, but these errors were encountered:
I don't see the problem. Animation of grid is done with transition property. If anything it's missing the animation: rule as well.
animation:
grid is a shorthand for the other properties.
grid
Sorry, something went wrong.
I found that this issue was caused by errors in the caniuse database.
I submitted a pull request to fix the errors, and it was merged: Fyrd/caniuse#7196
No branches or pull requests
Unlike the Can I use database, doiuse warns against the usage of
transition: grid
andtransition: grid-*
like this:main.css:
The text was updated successfully, but these errors were encountered: