
Design comparison
Solution retrospective
HTML semantics: Is it a good choice of tags?
Community feedback
- @toxa-devPosted about 1 month ago
Hello guys, thank you for your help. The transition was actually there, but it was written like this:
transition: background-color 0.3s ease; transition: color 0.1s ease;
The background-color transition didn't work because it was overridden. I didn't know this at the time. Also, it seems like 0.3s and 0.1s are too short; maybe 0.5s is indeed a better choice.
Appreciate your help and kind comments!
2 - @Shah-Faisal-cloudPosted about 1 month ago
Nice Job! A small improvement you may want to consider
To make the hover effects on the social links smoother, you can add a transition property. This will give users a more polished experience when they hover over the links.
2 - @MarziaJaliliPosted about 1 month ago
Yes, indeed!
As @Shah-Faisal-cloud said, you can use the
transition
property for a smoother color change of the links.- Take the code below as an example:
transition: background-color 0.5s, color 0.5s;
This ensures that the color will change after 500 milliseconds. Which makes it look even better.
- Also, consider adding the font of the design to the attribute element, too.
Other than this the solution is flawless!
Keep up the grind 💪
1
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