Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

QR code component using HTML & CSS

Donny 120

@Donitron

Desktop design screenshot for the QR code component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

Simply just proud that I went ahead and started this journey. Will be looking into doing more programming instead of watching tutorials all the time.

What challenges did you encounter, and how did you overcome them?

A few challenges I came across:

  1. Centering an element in the middle of the screen. Overcame this by searching for flexbox tricks.

  2. Using a custom font. Never actually looked into this surprisingly and there seem to be several ways of doing this. Read somewhere online that @font-face is the way to go.

What specific areas of your project would you like help with?

All css values have been used with pixels. Would it be possible to use rem instead? From what I learned you preferably want to use em or rem. Using pixel values would only be useful for border width and other small elements.

Why is @font-face the way to go opposed to for example embedding it as a link in the html?

Curious about other possibilities of centering an element in the middle of the page.

Community feedback

P
Koda👹 3,810

@kodan96

Posted

hi there 👋

You should avoid hard-coded values (pixels) most of the time. When you use these values you give up responsiveness(or you make it harder for yourself at least)..

Typically you will increase the font-size property with @media queries. If you have hard-coded values all over your CSS, you need to modify every element's font-size. On the other hand, if you use rem-s all you need to do is changing the font-size in your CSS :root selector and all your elements will have a new size based on that value.

I usually use em for padding and margin for text-based elements, since their margin usually based on their font-size, and again, when you change the font-size in :root these values will scale up as well without you touching them, making your job easier and your page maintainable.

Hope this helps! 🙏

Good luck and happy coding!

Marked as helpful

1

Donny 120

@Donitron

Posted

Hey @kodan96 !

Thank you so much for your feedback! I made some changes like you suggested. Great learning points :D

1

Please log in to post a comment

Log in with GitHub
Discord logo

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