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 Unused CSS Stages Transitions and Transforms Transitions - WebKit Only

Transitions and transforms quiz

for the challenge task do I select the background to transition as well?

3 Answers

Matthew Mascioni
Matthew Mascioni
20,444 Points

Nope! We're only animating the border-radius property in this case :)

Oh 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
Matthew Mascioni
20,444 Points

Ensure you're setting the property in the right selector. You should be setting the property for .box, your code seems fine.