Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
Looks pretty close to the design
What challenges did you encounter, and how did you overcome them?media query for screens under 500px isn't working.
What specific areas of your project would you like help with?media query for screens under 500px isn't working? Any pointers for this would be appreciated.
Community feedback
- @lowlifehighwayPosted 3 months ago
Hey, nice work went through your css and figured it out. The reason it seems like your media queries aren't working it cause you have
grid-column
andgrid-row
set on each individual elementso you could change each one in your media queries or use a css selector to select all the children of
<div class='container'>
.container>div{ grid-column:auto; grid-row:auto; }
Marked as helpful1
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