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 CSS: Cascading Style Sheets Use ID Selectors

Do I always use 'normalize.css'?

Is it a good habit to use 'normalize.css' for every website that I create?

3 Answers

Michael Alaev
Michael Alaev
5,415 Points

Its a good practice to remove some default styles that comes with the browsers.it will help your design cohesive great on other browsers[IE,opera,Firefox,Safari,Chrome].

You can use CSS reset, you can find it on meyerweb And as for your question no, you don't need to always use normalize or css reset in your projects. Hope that helps. Mike.

Ricky Catron
Ricky Catron
13,023 Points

Normalize.css is just a style sheet that helps a site render as close as possble what you intent in each browser. It isn't mandatory but it might help with compatibility issues. I have never used it.

I typically don't use it but it's a good idea to use it, regardless. I know that Bootstrap includes normalize.css so if you're using Bootstrap, you're using normalize.css.