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 Compass Basics Getting Started with Compass CSS3 without the Vendor Prefixes

Juan Francisco Andrade Álvarez
Juan Francisco Andrade Álvarez
23,997 Points

Help with part 5 of challenge.

Hi, For the 5th part of this step challenge, i wrote this code:

.main-logo :hover{
    @include transform(rotate(-25deg));
}

Is this wrong? I have problems passing this exercise. Please, help.

Thanks!

1 Answer

Rui Dias
Rui Dias
3,788 Points

Attention, no space between class name and hover selector. And if you are doing rotation you don't need the transform.

.main-logo:hover{
    @include rotate(-25deg);
}