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 trialJuan Francisco Andrade Álvarez
23,997 PointsHelp 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
3,788 PointsAttention, 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);
}
Juan Francisco Andrade Álvarez
23,997 PointsJuan Francisco Andrade Álvarez
23,997 PointsThank you Rui Dias, I'll check it out.