
Design comparison
Solution retrospective
I learned a bit about using Figma. My mastery of CSS properties has increased a little, and I'm happy that I’ve gradually learned to use Grid and Flex.
What challenges did you encounter, and how did you overcome them?I encountered challenges with mobile design. To overcome this, I used artificial intelligence and W3Schools.
What specific areas of your project would you like help with?I think I have many gaps in mobile responsive design, and I would like help in this area.
Community feedback
- P@ArcloanPosted 3 months ago
Hi, the solution looks really great :) For the responsiveness of web pages you should stop using fixed width and height and start using, max-width to limit the width of a container, and possibly don't set a value for the height of a component. If you start thinking in max-width term you'll find it much more easy to build responsive pages.
E.g. You could have used on the container max-width : 25rem and margin-inline : auto. (You used grid on the body and place-items to center it. It is equally valid)
Anyway I recommend the youtube channel of Kevin Powell. He has a lot of amazing videos. You could learn a lot.
Marked as helpful1@volti42Posted 3 months ago@Arcloan Thank you for your response. Do you have any other suggestions for improvements in any part of the code structure?
0P@ArcloanPosted 3 months ago@volti42 Not very much since the project is small. Learn first flexbox and then grid, they will help you tremendously in yur journey. Don't jump straight into a framework e.g. tailwind (I personally love tailwind but it is better to stick with vanilla css in the beginning so that you have a much better basis to learn new thing) and remember to use HTML only to structure your content not to give the content a specific decoration. Keep that in mind. You used an h5 element jumping many heading levels. Also don't use id selector in css and never use important in a css rule. Later in your journey you'll understand better why when you'll find yourself in a battle for specificity.
0
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