Design comparison
SolutionDesign
Community feedback
- @ecemgoPosted over 1 year ago
Some recommendations regarding your code that could be of interest to you.
- If you want, you can use the recommended color for the background:
body{ /* background-color: #f2f2f2; */ background-color: hsl(212, 45%, 89%); }
- If you set the width as
max-width
and you giveheight: 100%
anddisplay: block
to image, the card will be responsive
.container { /* width: 290px; */ max-width: 290px; }
.qremage { height: 100%; display: block; }
Hope I am helpful. :)
0
Please log in to post a comment
Log in with GitHubJoin 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