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 trialGabriel Ward
20,222 PointsChanging the hover selector.
I'm wondering how to change the hover selector, so that the transition only happens when the cursor hovers over the box, and not just in the wrap area in general, like in the video.
If change the selector to
.box:hover { background: #F08080; margin-left: 75%; }
The transition isn't smooth and doesn't work like it does in the tutorial.
2 Answers
Shaun Kelly
35,560 PointsAdd this code to your hover selector:
box:hover {
background: #F08080;
margin-left: 75%;
transition: all 1.3s ease;
}
Gabriel Ward
20,222 PointsThanks for your reply Shaun.