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 trialPhil Sta
3,805 Pointswhy .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
47,649 PointsHey, 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
3,805 Pointsahh of course, got it.. if there was another list somwhere, the same style would apply there too...
thanks!
Dan Weru
47,649 PointsExactly. You're most welcome.