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 Include External CSS

Do you have to use the normalize.css file everytime you build a website?

I've always just used my stylesheet.css and did not heard of normalize.css before, so i'm a little bit confused!

3 Answers

Wayne Priestley
Wayne Priestley
19,579 Points

Hi Nick,

No, you don't have to use it. Normalize just gives you a level playing field before you start adding your own css, it helps to keep things consistent across browsers.

Hope this helps.

Thank you Wayne! :)

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,253 Points

It's not a requirement but it'll help you get round all the tiny little differences to the way that browsers render CSS and HTML elements.

All it is, is a stylesheet that resets CSS rules to 0 or neutral values so you have a level playing field before you start working on your project. :-)

Thank you Jonathan, it's way more clear now :)

Konrad Pilch
Konrad Pilch
2,435 Points

There are many css files that helps you start of with website like normalize.css make everything the same level on every website like the margin 0 at the start and reset all the heading tags to the same level etc..

I find it more useful to write it my self since its easier to then customise things .

You do whatever you like . If you wantt o write styles in the index page, you write them there , up to you. Depending on what your building, different things may be better .

Hope this helps to.