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

Is Normalize.css necessary if I recreates the same as tutorial web page ?

Hi,

I'm trying to recreate the web page of HTML and CSS (same as like tutorial by Nick ). will it give same results if I don't go for normalize.css ?

Thanks in advance..

4 Answers

You can actually get normalize.css by going to http://necolas.github.io/normalize.css/3.0.1/normalize.css. Just copy and paste that code into a new css file and name it normalize.css and add it to your html document.

Thanks ben, This is really helpful.

No, it probably won't give the exact same result. Normalize.css has a large amount of formatting done that pretty much just erases the browser defaults so you can start from scratch. If you don't use normalize you will have to work around browser defaults. I recommend normalize because it really helps it making your css compatible for all browsers. Hope this was helpful.

Thanks for your reply Ben. but I don't have any idea how to style/create normalize.css . Where do I start then . ? .

Yes, you can get the same results, the advantage of normalize.css is that it helps you when you test your webpage on older browsers. Every browser apply it's own different css, so normalize.css makes a neutral ground for every browser so you don't encouter issues when crossbrowsing your webpage.

Thanks George. Can you tell me where do I start to learn or understand this Normalize.css ?

The normalize.css you can find it in the download files for that video. Then you can use it as it is if you want, or you can take each declaration and try to understand it.

Thanks a lot George. I got the concept now. It's nothing but making a constant styling format for all browsers without browser default changes.