Design comparison
SolutionDesign
Solution retrospective
I had trouble with the responsive design especially for the mobile design (375px) can somebody point me to the right direction?
Community feedback
- @abhik-bPosted almost 4 years ago
Hi David 👋 Good job on this challenge , it is responsive and looks good overall
Just some opinions ~
- don't give any class to body, select them in css by just
body
- what I understood from your question, to fix that my solution would be replacing
@media (min-width:375px)
with@media (max-width:768px)
or amax-width
with value > 375px - moving
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
to.quotes
instead of media queries might actually work
Good job overall, Happy coding and keep contributing 🚀
1 - don't give any class to body, select them in css by just
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