
Saud Tauqeer
Pro Student 8,099 Pointswhy p.description ? wouldnt just .description work?
3:50 video mark. code line number 2.
3 Answers

Niclas Hilmersson
8,294 Pointswell p.description means target all <p> tags with a classname of "description" in the document.

Niclas Hilmersson
8,294 PointsYes exactly!

Saud Tauqeer
Pro Student 8,099 PointsThanks again for explaining it to me i was lost for a while

Niclas Hilmersson
8,294 PointsYes 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.

Saud Tauqeer
Pro Student 8,099 PointsSo p.classname means all the classes which are in the <p> tag?

Saud Tauqeer
Pro Student 8,099 PointsAll the classes as in whatever the class name is specified
Saud Tauqeer
Pro Student 8,099 PointsSaud Tauqeer
Pro Student 8,099 PointsSo 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.