Design comparison
Community feedback
- @omlan99Posted 6 months ago
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 helpful0@Vaibhav507Posted 6 months ago@omlan99 Thank you for your reply i will include the changes in any further challenges
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