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 trialRyan Spears
2,649 PointsI need help
I do not know what I am doing wrong. I think I type the code correctly but it keeps telling me that do I have the correct transition property. Please help
Ryan Spears
2,649 Pointsok so here is my code.
.box { border-radius: 15px; background: #4682B4; transition-property: background; transition-duration: 2s; transition-delay: 1s; transition-timing-function: linear; }
.box:hover { background: #F08080; border-radius: 50%; }
thx for helping :)
Anna Dadej
10,707 PointsThey asked about prefix for webkit-based browsers, so you forgot about -webkit-transition
2 Answers
Vlatko .
2,526 PointsWe need to see your code before we can help.
Steven Collins
Courses Plus Student 18,004 Points+1 for code request. :-)
Ryan Spears
2,649 PointsRyan Spears
2,649 Pointsok so here is my code.
.box { border-radius: 15px; background: #4682B4; transition-property: background; transition-duration: 2s; transition-delay: 1s; transition-timing-function: linear; }
.box:hover { background: #F08080; border-radius: 50%; }
thx for helping :)