Social links profile solution

Solution retrospective
- Proud of my ability to understand how to structure html so it is semantically correct.
- Additionally, understand how to use media queries to make my website responsive.
- Had not come across for lists and therefore had to research it
Please log in to post a comment
Log in with GitHubCommunity feedback
- @SvitlanaSuslenkova
You have <main> and <div class="container">. You don't need two, just one is fine. Also when you want to align project to the center with flex or grid add min-height: 100vh; As now your aligns everything to the center of it's height, not to the center of your view. Hope you found this comment helpful :)
- P@MikDra1
I encourage you to use this technique to make the card responsive with ease:
.card { width: 90%; max-width: 600px; }
On the smaller screens card will be 90% of the parent (here body), but as soon as the card will be 600px it will lock with this size.
Also to put the card in the center I advise you to use this code snippet:
.container { display: grid; place-items: center; }
Hope you found this comment helpful 💗💗💗
Good job and keep going 😁😊😉
- @babalonogqala23
great work it is kind of hard to make something pixel-perfect but you did very well.
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