Skip to content
  • Unlock Pro
  • Log in with GitHub
Solution
Submitted 9 months ago

Qr code project

uptown_girl•610
@uptowngirl757
A solution to the QR code component challenge
View live sitePreview (opens in new tab)View codeCode (opens in new tab)

Solution retrospective


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

I used this CSS:

.qr-code-img {
  width: 100%;
  max-height: 600px;
}
.container {
  min-height: 60vh;
  display: flex;
}

Instead of using:

.qr-code-img {
  width: 100%;
  height: 600px;
}
.container {
  height: 60vh;
  display: flex;
}

which would have caused a lot of trouble on smaller screens

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

Initially, the image overflowed its container when I set its height using the height property. I resolved this by using min-height and max-height, which ensure the height remains flexible on smaller screens, improving responsiveness.

Code
Loading...

Please log in to post a comment

Log in with GitHub

Community feedback

No feedback yet. Be the first to give feedback on uptown_girl's solution.

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

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner
  • Use cases

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License