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

HTML How to Make a Website Creating HTML Content Review: Creating HTML Content

jordan Buckhalt
jordan Buckhalt
1,606 Points

Normalize.css

It could be that I'm not far enough into the program to realize this is a trivial question, but is having a normalized css file something that you should always have? Or is it just a file to get started with because we haven't learned css yet?

1 Answer

Christoph Walpert
Christoph Walpert
3,752 Points

Hey :) So they way I understood it: It is allways good to have a normalize.css, unless you are using frameworks, like Bootstrap and so on. You can imagine it like a reset to all the styles that the browser has predefined. So when you apply it, you can be assured that the custom styles you build, will look the same in all browsers. Therefore I would allways use it, since it is easy to implement and there is really no harm in including it. Also Frameworks like Bootstrap have it built in allready.

jordan Buckhalt
jordan Buckhalt
1,606 Points

Thanks for the in-depth answer Christoph! Because we kinda just skipped over it in the tutorial I was curious if that was something we shouldn't even think about, but it's good to know that it's an easy to implement standard that we don't have to create from scratch. Especially since the more I learn, the more in-depth I realize coding can be. So fascinating!