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

Lester Williams
Lester Williams
5,035 Points

transitions format

-webkit-transition:2s 1s linear; or as WC3 states -webkit-tansition: all 2s cubic-bezier(0.0, 0.0, 1.0, 1.0) 1s

neither work, have I missread the question?

kind regards

Lester

Peter Burdette
Peter Burdette
3,701 Points

The css property you are trying to affect needs to come first. Try this:

-webkit-transition: all 1s linear; transition: all 1s linear;

(You can replace "all" with the property you want to transition)

2 Answers

Jacob Miller
Jacob Miller
12,466 Points

In the case of the code challenge, you'll want to specify "border-radius" as the property you're applying the transition to.

-webkit-transition: border-radius 2s linear 1s;
Lester Williams
Lester Williams
5,035 Points

Ah thanks Jacob, that makes sense! how did I miss that?