social-links using HTML and CSS

Solution retrospective
using flexbox I was able to achieved the layout
line-height was also helpful
Please log in to post a comment
Log in with GitHubCommunity feedback
- P@Odiesta
Hi Opeyemi Eniola, Good work on achieving result that looks same as the design file. I want to give few improvement.
- You could set the css reset on all element using the
*
selector - Use CSS custom properties to set color variable for easier use and maintenance for example
:root { --white: hsl(0, 0%, 100%);; }
- On socials element instead of using div for social link use
a
tag to make it as link.
I hope it helps
- You could set the css reset on all element using the
Join 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