Design comparison
Solution retrospective
I haven't coded for a few weeks but I'm how fast I deal with this project
What challenges did you encounter, and how did you overcome them?flex not centering the app at the center of the page
Community feedback
- @ChamuMutezvaPosted 4 days ago
Hi Molokwu wilson
Nice work so far on the challenge. Here is my opinion:
- missing landmark elements - this challenge needs the
main
landmark element. Landmark elements are important for providing means to identify the organization and structure of a web page. The main element identifies the primary content of a web page - the path of your image should be easier to follow . Generally path names should not have the empty spaces and the name does not have to be that long. That will be prone to errors
- an interactive element should not be a parent or child of another interactive element. A button cannot have an anchor element as a child or vice-versa. A button is associated with form submission and toggling a menu whilst the anchor element is tied to navigation
- Always have a modern reset stylesheet to normalise your site
- the
max-height: 100vh;
on your body element is not diserable , it can have some effects. Instead what you need ismin-height: 100vh;
- this allows you content to grow without restriction when necessary - Font sizes should never be in px values, use rem. The following article can help you on that topic font sizes
0 - missing landmark elements - this challenge needs the
- @shrutiakkewarPosted 4 days ago
The container is centered properly, but responsiveness should be checked for smaller screens.
Add a max width of 90% to the container to ensure it scales down for smaller devices.
The buttons and text look closely packed. Add more padding and margin between buttons and text for better spacing.
.container button {
margin: 10px 0; /* Increased margin */
padding: 12px; /* Larger padding */
}
You did a great job!...
Happy Codding!!!
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