Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

keith 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.