Design comparison
Solution retrospective
I am really proud of how close it looks to the stock design. I would try to clean up the CSS, and tackle the code one step at a time instead of bouncing around.
What challenges did you encounter, and how did you overcome them?my biggest issue I had, was trying to get the author name to be in line and at the same level as his image. I ended up having to use the MDN to figure it out that the width of the text was off.
What specific areas of your project would you like help with?I would like help on how to clean up the code, make it more semantic, and how to use fewer lines if possible.
Community feedback
- @0xabdulkhaliqPosted 8 months ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have a suggestion regarding your code that I believe will be of great interest to you.
CSS 🎨:
- Looks like the component has not been centered on vertically yet. So let me explain, How you can easily center the component using layout properties from css
- To properly center the component in the page, you should use
Flexbox
orGrid
layout. You can read more about centering in CSS here 📚.
- For this demonstration we use css
Grid
to center the component.
body { min-height: 100vh; display: grid; place-items: center; align-items: end; }
- Now your component has been properly centered
.
I hope you find this helpful 😄 Above all, the solution you submitted is great !
Happy coding!
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