
Design comparison
SolutionDesign
Solution retrospective
What specific areas of your project would you like help with?
any tip on Js or responsive design
Community feedback
- @AutumnsCodePosted 10 months ago
Hi,
well done.
Here are some feedback in regards to your request. ** Responsive**: Start with the mobile design first, then I would go look into the other view. Also you might don't know it, but you are able to use logical property and not just min-width, width or max-width. Here is an example:
@media (width > 400px){ /* it only apply the next style if the width is larger than 400px*/ } @media (width >= 400px){ /* it only apply the next style if the width is larger or equal than 400px */ }
Keep it up :)
Marked as helpful0
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