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 trialMaher Qawadri
2,915 Pointscss foundation stage 11 challenge task1
I add the following 3 lines as required: -webkit-transition-duration: 2s; -webkit-transition-delay: 1s; -webkit-transition-timing-function: linear;
when I press the check button it tells me to recheck the transition properety, but when I press the preview button, I think it works. can any body tell me where is the problem?
1 Answer
Tim Knight
28,888 PointsHi Maher,
Keep in mind too they are asking you to specifically target the border-radius attribute of the CSS selector. So you'll want to add -webkit-transition-property: border-radius;
in there as well. Optionally, you can write this using shorthand on a single line with:
-webkit-transition: border-radius 2s linear 1s;