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

In the case of a CSS styling conflict, does <link> or @import take precedence?

Let's say that I'm using an external stylesheet, but I've also imported another stylesheet. If there were conflicts in the code (let's say <link> has h1 {color: red;} while @import has h1 {color: blue;}), which stylesheet has more specificity? Which color would show up?

1 Answer

Steven Parker
Steven Parker
229,785 Points

Since both rules are based on a tag name, they have the same specificity. So CSS rules are then applied in the order they are found. That means whichever one comes last will determine the color shown.