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 trialkeith McCarthy
3,162 PointsTransitions and transforms quiz
for the challenge task do I select the background to transition as well?
3 Answers
Matthew Mascioni
20,444 PointsNope! We're only animating the border-radius property in this case :)
keith McCarthy
3,162 PointsOh ok. I don't know if there's some type of bug or if I'm completely wrong, but this is the answer I have entered:
-webkit-transition-property: border-radius; -webkit-transition-duration: 2s; -webkit-transition-delay: 1s; -webkit-transition-timing-function: linear;
I have also tried:
-webkit-transition: border-radius 2s 1s linear;
Matthew Mascioni
20,444 PointsEnsure you're setting the property in the right selector. You should be setting the property for .box, your code seems fine.