Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
I am proud of using @media
for the first time:
What challenges did you encounter, and how did you overcome them?main { background-color: var(--white); margin: 5%; border-radius: 3%; overflow: hidden; display: flex; flex-direction: row; flex-wrap: wrap; width: fit-content; } @media (min-width: 28em) { main { flex-wrap: nowrap; width: 600px; height: 450px; } }
I faced difficulties in using different image for different viewport sizes, but after reading about Responsive Images and some trial & error I was able fix it.
What specific areas of your project would you like help with?
Responsive CSS techniques
Community feedback
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