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

Tom McGann
Tom McGann
674 Points

CSS stage 4

So far in this lesson-Is anything supposed to be inside the "normalize.css" file?

The css for normalize should be inside "normalize.css" but you should not be adding any of your own css to it.

2 Answers

Like Jason said, it's smarter to just leave normalize.css alone, and make any adjustments to the styles in your own stylesheet -- eg. my-styles.css. Here you can override anything in the normalize.css stylesheet as long as the link to your stylesheet is after the link to the normalize.css stylesheet in your html file. "After" meaning lower down on the page.

Ragav Raman
Ragav Raman
7,412 Points

There should be some CSS in the normalize.css file. You can add or remove some of your own CSS if you want to.