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

Phil Sta
Phil Sta
3,805 Points

why .main-nav li {} instead of targeting just li {}?

Hi,

what is the difference between targeting the list like this:

.main-nav li {

} and just using

li {

}

Thanks!!

2 Answers

Dan Weru
Dan Weru
47,649 Points

Hey, it depends with how specific you want to be

// select only list items inside the list with a class  main-nav 
.main-nav li {
   padding:15px;
}

// select all list items in the mark up
li {
   padding:0;
}
Phil Sta
Phil Sta
3,805 Points

ahh of course, got it.. if there was another list somwhere, the same style would apply there too...

thanks!

Dan Weru
Dan Weru
47,649 Points

Exactly. You're most welcome.