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

Normalize.css

Hi,

Still learning the ropes and treehouse forum always gets the best answers so...

I'm just starting to make a few sites to see what im capable of and I remembered Nick Pettit giving us a normailize.css style sheet to load into the site.

I know the purpose of them and why they are needed but the question is do I code this normailze.css myself is a something that is available on the web, can I simply use the one downloaded for the course from treehouse ???

Well you see where im going with this, any advice welcome !!

Thanks

You can use whatever you want; normalize.css or search the Web for 'css reset' or something similar; or write your own - something as simple as:

* {
  /* typically not recommended to apply styles to all elements - this is just an example */
  margin: 0;
  padding: 0;
}

1 Answer

Wayne Priestley
Wayne Priestley
19,579 Points

Hey Craig,

Its best to downed it from the Normalize website, that way you know you have the latest one.

Here is a link to the Normalize website, click to download then when the page loads, simply copy the code then paste it into a new file in your css folder and name it normalise.css

Hope this helps.

Thanks Wayne