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

Dwain Aiolupotea
Dwain Aiolupotea
10,350 Points

What am I doing wrong?

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

Dwain Aiolupotea
Dwain Aiolupotea
10,350 Points

okay, I finally figured it out. I should have put -webkit- prefix on all of them. Man, I stink at code. I keep forgetting everything I've learn't. Feel, real stupid. :(

Don't be hard on yourself. If this is your first time doing this then it's going to be hard to remember everything. It'll come with practice and making lots of mistakes like this.

2 Answers

David Curtis
David Curtis
11,301 Points

Set up a free account on github and store code snippets as gists, then you can refer to them later. I find it very useful! You can also use gistbox for free - makes it very easy to tag and store your gists.

https://gist.github.com/

http://www.gistboxapp.com/

Dwain Aiolupotea
Dwain Aiolupotea
10,350 Points

Thank you for that. I'll check it out.