Design comparison
Solution retrospective
I'm most proud of how clean and organized the code is in this example. Each element is properly structured and styled, making it easy to understand and maintain. Additionally, the use of CSS for styling allows for flexibility and consistency across different devices and screen sizes.
If I were to do something differently next time, I might consider adding more interactivity or animations to make the social links profile more engaging. This could include hover effects, transitions, or even interactive elements like buttons or tooltips. Additionally, I might explore using CSS frameworks like Bootstrap to streamline the development process and ensure better compatibility across browsers.
What challenges did you encounter, and how did you overcome them?The main challenge was ensuring consistent display across browsers and devices. I used modern CSS techniques like flexbox and media queries for responsiveness. Ensuring smooth hover effects across browsers was another challenge, addressed with CSS transitions and thorough testing.
What specific areas of your project would you like help with?none
Community feedback
- @danielmrz-devPosted 8 months ago
Hello, @Anujkumar6316!
Your project is looking fantastic!
I'd like to suggest a way to make it even better:
- Using
margin
isn't always the most effective method for centering an element.
Here's a highly efficient approach to position an element at the center of the page both vertically and horizontally:
š Apply this CSS to the body (avoid using
position
ormargins
in order to work correctly):body { min-height: 100vh; display: flex; justify-content: center; align-items: center; }
I hope you find this helpful!
Keep up the excellent work!
0 - Using
- @edperPosted 8 months ago
Good start. But I advise you to include hover on your social links in your CSS. Also, you use background-color when you are using the :hover pseudo class. Maybe you can use the green color as your background color for hover. You can also play around with using the brand color as your background for each link.
0
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