Submitted about 2 years ago
clipboard-landing-page-master [my fourth project]
@Gabriela-hub-89
Design comparison
SolutionDesign
Solution retrospective
I could not change the color of the network icons when hovering the mouse over them. And any other tips for improvement would help me a lot.
Community feedback
- @md5daltonPosted about 2 years ago
Greetings Gabriela 👋
Congratulations on finishing this challenge. Great work.
If you want to change the color of the
svg
images when a user hovers over them, you can modify thefill
property through CSS. I'll demonstrate below:svg path { transition: 0.5s } svg path:hover { fill: red; }
You can add a transition property above to make it nicer. You can also use a color of your choosing,
red
is just an example. I hope that helps. 👌Marked as helpful0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord