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

JavaScript JavaScript and the DOM (Retiring) Making Changes to the DOM Getting and Setting Text with textContent and innerHTML

why p.description ? wouldnt just .description work?

3:50 video mark. code line number 2.

3 Answers

Niclas Hilmersson
Niclas Hilmersson
8,296 Points

well p.description means target all <p> tags with a classname of "description" in the document.

So if there is a <h1> which also has a class of description. It wont be targeted right? Because p.desciption will explicitly target description in p tag across the document.

Thanks again for explaining it to me i was lost for a while

Niclas Hilmersson
Niclas Hilmersson
8,296 Points

Yes it would. But why he is using that is because of specificity. He just wants to be very specific on what he targets to not cause problems in the future if you add different elements with the same class.

So p.classname means all the classes which are in the <p> tag?

All the classes as in whatever the class name is specified