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

Should normalize.css be used with every website?

Normalize.css is used to create a good foundation for our custom css in the Web Development track portfolio project. Should this be used with every website we make? Regardless of whether its a Treehouse project or not? Or is it really on a case-by-case basis?

1 Answer

Welcome to Treehouse!

I would recommend using some sort of reset for every website you create. They go a long way towards helping to standardize the way your website looks and feel across all browsers and devices.

However, you don't have to specifically use normalize.css every time. You'll be using it for your Treehouse courses, but there are many different CSS files out there that are designed to help you lay a foundation for your own CSS styles.

The normalize.css approach is designed to address inconsistencies in different browser's default styling, while preserving some basic styles. I personally prefer the meyerweb css reset, which basically zeros out all of the browsers default styles so you can work from the ground up.

What you choose to use is a personal preference, but working without one will make it difficult to achieve a consistent user experience. Happy coding! :)