Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

This animation doesn't seem to work in chrome and I can't find an easy answer online.

So I've followed the video and as best as I can tell there are no spelling or spacing mistakes so the best I can assume is that there is a change in the way chrome handles these sort of animations? https://w.trhou.se/41i6j7uc6u

Blake Larson
Blake Larson
13,014 Points

You have a typo in your animation. forwards is spelled wrong

animation: offset 5s .8s linear forwards, fill-it .8s 5s forwards; // <-- this line works
animation: offset 5s .8s linear forwrds, fill-it .8s 5s forwards; // <-- typo

1 Answer

Robert Manolis
STAFF
Robert Manolis
Treehouse Guest Teacher

Hey Peter Jardine , on line 33 of your style.css file, you've misspelled the first instance of forwards. Missing an 'a'. Once that's fixed, it seems to work for me. :thumbsup: