
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 GitHubCommunity 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