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
Your session has expired please log in again.
Your session has expired please log in again.

Submitted

learning qr code

PrimeSeyiโ€ข 20

@PrimeSeyi

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


I dont know how this pixels thing work on html. The DOM does not reaaly reflect what i did on the CSS. I dont know why. Help would be much appreciated.

Community feedback

Francisco Carrilloโ€ข 5,540

@frank-itachi

Posted

Hello there ๐Ÿ‘‹. You did a good job!

I have some suggestions about your code that might interest you.

HTML ๐Ÿ“„:

  • Wrap the page's whole main content in the <main> tag.
  • Make sure that the <img> elements in your HTML code has an alternate (descriptive text) short text. The reason for this is that screen readers canโ€™t translate images into text. So to fix this you can do the following <img src=โ€โ€ฆโ€ alt=โ€short textโ€ >

CSS๐ŸŽจ:

You can use grid or flexbox to center the content no matter the viewport size. Since I use grid to achieve such purpose, you can do the following:

body {
	min-height: 100vh;
        display: grid;
	align-items: center;
	justify-content: center;
}

As I said, you can use flexbox to center the content and it will work as well.

body {
	min-height: 100vh;
        display: flex;
	align-items: center;
	justify-content: center;
}
  • Avoid using absolute length units px, especially for font-size and width properties, because they are not relative to anything else so that means they will always be the same size. Instead, you can use relative lengths like em or rem. The benefit of that last one is element which has that unit will scale relatively to everything else within the page, e.g., the parent container. You can dig up about it here

I hope you find it useful! ๐Ÿ˜๐Ÿ˜ Above all, the solution you submitted is great๐Ÿ‘Œ!

Happy <coding /> ๐Ÿ˜Ž!

0
Ismael Paulโ€ข 200

@ismaelpaul

Posted

Hi @PrimeSeyi,

Congratulations, nice job!

You don't need to use width="288px", just width="288" will be fine. And, apparently, you are not applying the font-family to your project. I can see you are using font-family: var(--base-font) but I didn't find the --base-font in your files.

Cheers,

Ismael Paul

0

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