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 trialLester Williams
5,035 Pointstransitions format
-webkit-transition:2s 1s linear; or as WC3 states -webkit-tansition: all 2s cubic-bezier(0.0, 0.0, 1.0, 1.0) 1s
neither work, have I missread the question?
kind regards
Lester
2 Answers
Jacob Miller
12,466 PointsIn the case of the code challenge, you'll want to specify "border-radius" as the property you're applying the transition to.
-webkit-transition: border-radius 2s linear 1s;
Lester Williams
5,035 PointsAh thanks Jacob, that makes sense! how did I miss that?
Peter Burdette
3,701 PointsPeter Burdette
3,701 PointsThe css property you are trying to affect needs to come first. Try this:
-webkit-transition: all 1s linear; transition: all 1s linear;
(You can replace "all" with the property you want to transition)