Design comparison
Solution retrospective
The most proud thing is that I did this by myself.
I just started my journey to become a Web Developer, it's Day 9 of #100DaysOfCode. Today, I decided to review all the lessons from the fundamentals of HTML and CSS and use all the concepts I learned to tackle this amazing challenge!
What challenges did you encounter, and how did you overcome them?Since I'm just starting my journey as a web developer, I surely encounter many challenges. However, every challenge I face, I can overcome thanks to the learning I've done.
What specific areas of your project would you like help with?For now, I feel quite satisfied with the state of my QR code component coding, but if you have any suggestions, I would greatly appreciate it.
Community feedback
- @danielmrz-devPosted 6 months ago
Hello there!
Congrats on completing the challenge! ā
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!
Marked as helpful0@amyrmdhnPosted 6 months agoHi @danielmrz-dev
I'm very grateful for the advice and tricks given, I will fix it right away.
If you don't mind, could you give me advice on the semantic elements I've used? Whether they're already appropriate or if there's room for improvement.
.^_^.
0 - Using
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