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-Challenge with HTML and CSS only

@mellingh

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?

I think it looks pretty similar to the original.

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

Responsiveness for mobile

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

Didn't know how to make the website responsive for the mobile version.

Community feedback

Mirjax2000 680

@Mirjax2000

Posted

Hi, you need to be responsive to many resolutions what people used to browse the internet. We have PC monitors, notebooks, tablets, phones, retina phones, even smart watches on your hand can run web.

Responsivnes and dynamic resolution is big theme. First of all to answer your question is how to make breakpoint to tell the browser here on that resolutin i want my width of my card componet be 20% smaller.

standart for that now are mediaqueries. @media only screen and (max-width: 780px) { .card {width:80%}};

that is mean thet at resolution 779px element .card recieve new value width:80% so it will be smaller by 20% and also all his children which they have something to do with width, they will aslo shrink down.

ok study mediaquerie to help you understant how to make page responsive.

then we have also dynamic content and for that we use percentages and flexbox or grid layouts, and it will react dynamicly for your width and height automagicly. Here you dont need mediaqueries.

But if something happen on some resolution your design will fail, you need mediaqueris to adjust it. and we call it breakpoints.

i hope it helped you some bit.

0
P

@NF0mar

Posted

Everything look fine, I Learnt something from it.

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