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 trialSekhar Reddy
1,141 PointsOverriding the styles in a CSS file?
How the browser implement a style property (ex: p {font-size : 20px;} on line 10 and different line 20 with same style property (ex: p {font-size : 30px;} in a CSS file?
1 Answer
Dave McFarland
Treehouse TeacherIf you have two CSS rules with the same level of specificity -- two rules with the same selector name, for example -- then the rule that's specified LAST will win. In your example, the style on line 20 p { font-size: 30px;}
wins.