Design comparison
Solution retrospective
Please provide general feedback on what I could do better in this project. I just started with web development and it would do me a ton of good to know how I could better grow in my journey of learning. Thank you.
Community feedback
- @Fernando0654Posted almost 3 years ago
π Hey! I saw you used
max-width
property with%
. This isn't a good idea because it will get smaller on smaller screen sizes. The best way of doing this is:max-width: 600px
andwidth: 95%
for example. This way, it's not gonna grow more than 600px on bigger screens and it'll be 95% on any kind of mobile deviceGood luck, browww.
Marked as helpful1@mikhael-ooPosted almost 3 years ago@Fernando0654 ah thanks. I also thought of using media queries but your suggestion might be the better option.
1 - @anoshaahmedPosted almost 3 years ago
To get rid of the accessibility/HTML issues shown in your Report, wrap everything in your body in
<main>
OR use semantic tags OR giverole=""
to the direct children of your<body>
... Click here to read moreGood job! :)
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