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 trialAnas Rida
8,183 Pointswhich css is going to show through
in regards to this video and adding a normalize.css and a style.css, once the style.css is linked with the HTML, does it overwrite the effects of the normalize.css?? thank you
1 Answer
Klaas Hakvoort
Courses Plus Student 1,456 PointsYou must always put the normalize.css above your own css file. That way the normalize.css wil get used first so you hava a standard look across multiple browsers and then your css will overwrite the normalize.css
To answer your question a combination of the two will show, everything that you don't overwrite from normalize.css will show and everything from your css file will show.
Sorry for my bad English, but i hope this wil help you
Anas Rida
8,183 PointsAnas Rida
8,183 PointsThank you very much, I understand now. I appreciate you taking the time to explain this to me.