Design comparison
SolutionDesign
Solution retrospective
I would love to know how to make the responsive design. Please share some tips. Thank you
Community feedback
- @RioCantrePosted almost 3 years ago
Hi! Good job in making this project, so far you did well on composing the code of the design. And for the issues you wanted to improve, I could suggest the following for you:
- inside the
body
tag includebackground-color
with the given color value - include media queries for the responsive design. For instance,
@media only screen and (max-width: 653px) { .card .bottom .left { background-color: hsl(179, 64%, 38%); padding: 40px; border-bottom-left-radius: none; width: 100%; } .card .bottom .right { background-color: hsl(179, 62%, 43%); padding: 40px; width: 100%; } };
- use
main
tag to wrap the.container
- use a validator to check your solution structure.
Overall you did well, read more on media queries and I hope this helps.
0 - inside the
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