Social links profile with HTML CSS(grid,flexbox, custom properties)

Solution retrospective
I used ul and li in HTML. It wasn't new to me, but it was nice to recall and use the knowledge I had learned
What challenges did you encounter, and how did you overcome them?It wasn't a very challenging project. For me, it was like reviewing all my knowledge. I practiced and became more familiar with Figma
Please log in to post a comment
Log in with GitHubCommunity feedback
- @kamkwamba-k
Great job on the social links profile card project! The overall design looks good, and you've done a commendable job with the hover effects and responsive layout.
To align the card at the center as the design specification you could also wrap the whole card in a div, give it a class of container and style it as follows:
.container { display: flex; justify-content: center; align-items: center; width: 100%; height: 100vh; }
That way you'll center the whole card
Marked as helpful
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