Created with HTML5 (BEM), CSS3 (flexbox)

Solution retrospective
I would like feedbacks ...
My biggest problem is about making some site responsive, because, I don't know which one to use "min" or "max".... I would like help if possible.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @shubhamthedev
It's a simple concept if you designed your site first for desktop screen sizes like 1400px then you need to scale down your design using
max-width
media queries and if you designed your webpage for mobile first screen sizes like 375px then you usemin-width
media queries to scale up your design.Here is an MDN page for the same although this contains a lot of details and might confuse you so here is a youtube video for the same.
- @mattstuddert
Nice work on this challenge! I typically recommend sticking to
min-width
media queries. Working mobile-first and usingmin-width
queries has a number of positives. It can often lead to less CSS code and has the benefit of loading in fewer styles for mobile users, which can be a nice performance gain. A lot of developers often find it to be a more efficient workflow once they're used to it as well.Keep up the great work!
Join 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