
Please log in to post a comment
Log in with GitHubCommunity feedback
- @omlan99
Hello there 👋
Good job on completing the challenge !
Your project looks really good!
I have a suggestion about your code that might interest you.
Some of the HTML elements are styled default by the browsers and each browser will have the own default styling of HTML elements, this makes us write browser-specific style handling. We can override the styles by selecting all the HTML elements having most of the values of your choice as provided in the below example. *{ margin: 0; padding: 0; box-sizing: border-box; } This will reset the margin and padding and then you can design margin and padding without changing according the browser.
Marked as helpful
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