Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS How to Make a Website Customizing Colors and Fonts Pick Fonts and Set Relative Units

Reset -vs- normalize.css

What is the difference between using reset in the main.css instead of a separate normalize.css?

sorry this question just came to me at this point. It may not be in the correct point in the program. I am used to coding html and css, but this course has shown me better ways to do stuff.

3 Answers

Reset.css will remove all the default styling applied by the browser to give you a blank canvas where as normalize is a base stylesheet meaning its the starting point for your website styles and it styles the default elements to be consistent across the browsers.

yeah that's right--forgot--THANKS

Lucas Santos
Lucas Santos
19,315 Points

Reset.css will reset every single pre defined styles that the browser will give you like margin, padding, font styles and so on. Normalize.css will not reset ever single pre defined styles that the browser provides, it will leave some of the more useful styles like some font styles margins and line height.

Lucas Santos
Lucas Santos
19,315 Points

answered at the same time