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

Code Challenge

.box { border-radius: 15px; background: #4682B4; transition-duration: 2s; transition-timing-function: linear; transition-delay: 1s; }

.box:hover { background: #F08080; border-radius: 50%; }

I'm having hard time with this code challenge. I get an error to check the "transition property"

Is there anything else I should do, can someone help. thanks.

Cecil

2 Answers

Brian Goldstein
Brian Goldstein
19,419 Points

So two big issues - first is you have to append the -webkit- prefix to all of the transition statements.

second, you have to define the css property you want to transform. see http://www.w3schools.com/css/css3_transitions.asp for more

Thanks Brian. it worked.