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

Guil Hernandez
STAFF
Guil Hernandez
Treehouse Teacher

Help QA our upcoming course: Animating SVG with CSS!

UPDATE: Sign ups are now closed! Thanks everyone!

Hey everyone!

We have an upcoming course called Animating SVG with CSS and we're ready to open it up for some beta testing!

If you're able to take the course and deliver feedback by this Thursday (July 9, 2015), respond below and let me know that you're interested. We only need a few testers and sign up is on a first-come-first-serve basis, so get in there quick!

If you get picked, you'll get an email about what to do next.

6 Answers

Omar Emara
Omar Emara
18,249 Points

I'm ready to take it!

Kevin Korte
Kevin Korte
28,148 Points

I can help if needed still.

Possible bug or I need help.

Animating SVG with CSS

Part 1 Code Challenge Task 2 of 6 In style.css, create a new rule that targets .star-bg. Add a 1s transition for the fill property.

I have been using this code and it works in preview, but does not pass.

.star-bg { transition: 1s ease-out; }

.star-bg:hover { fill: #FFF; }

Please correct me as I cannot see where I am going wrong? Note easing and fill colour were not specified in original task.

Guil Hernandez
STAFF
Guil Hernandez
Treehouse Teacher

Hi Warwick Hook,

If you include something that is not specified in the task, it will not pass. For example, the ease-out timing function is not necessary and the fill color needs to be steelblue instead of #FFF.

Hope this helps.

Thanks Guil, all sorted. Your tutorials are terrific.