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 CSS: Cascading Style Sheets What is CSS?

Alexandra Cianciara
Alexandra Cianciara
2,465 Points

How to make a website/css

I have a question on the Normalise stylsheet used in this course. What is the purpose of this? I didt quote get it where was this used. Also, is there a reason to use sepereate css stylsheets? I think at the end of the course there was a use of seperate one for media query. Can we not have all in one?

Thank you

3 Answers

Brendan Whiting
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Brendan Whiting
Front End Web Development Techdegree Graduate 84,735 Points

Browsers have default ways of styling html. (There's the classic blue links, stuff like that. Not many websites are completely un-styled nowadays). But different browsers have different defaults, which is annoying sometimes, but the web is kind of the wild west. Normalize.css is a ways of applying some defaults to all the browsers. If you're developing your website by previewing it in Chrome, you want to avoid surprises when you look at it in Internet Explorer.

You could put it all in one file, but it's a better idea to keep it separate I think. It's more management to have small files so it's easier to find what you're looking for.

Alexandra Cianciara
Alexandra Cianciara
2,465 Points

Thank you. So, should I have normalise.ss, then my customise css stylesheet and then probably the third one for responsive css?

Alexandra Cianciara
Alexandra Cianciara
2,465 Points

Thank you. Sorry but what is scss?