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 trialRobert Kwiat
5,349 PointsAnimations and Hover
Hi everyone, I just finished the animations section of the Front End Web Development track and the instructor mentioned using the hover pseudo element to start or stop an animation. Can somebody show me how to do that? Thanks!
1 Answer
Jonathan Broderick
12,409 PointsHere is the syntax for the hover pseudo element:
selector:hover {property:value;}
For example, this code would change the color of the text for a link to red when you hover your mouse cursor over the link.
a:hover {color: red;}
I hope this helps!