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 trialPhilip Kroupoderov
Front End Web Development Techdegree Graduate 21,641 Pointscan normalize.css ever conflict with your stylesheet??
can normalize.css ever conflict with your stylesheet??
2 Answers
Jason Anders
Treehouse Moderator 145,860 PointsHi Philip,
The "Cascading" part of CSS also applies to the order 'loaded' in you HTML. Tianni is incorrect in the order of 'priority'. As long as the normalize.css file is the first one listed in your HTML file being loaded, any additional sheets (custom ones you've created) will overwrite the normalize.css rules and render your custom rules.
This way, the normalize.css file "Normalizes" the browser before your rules are implemented.
So, remember, load normalize.css first then your other sheets.
:)
Jasper Kop
10,423 Pointsgood question!